// Define pricing tiers const ipPriceTiers = [ { range: [1, 250], price: 100 }, { range: [251, 500], price: 200 }, { range: [501, 1000], price: 400 }, { range: [1001, 5000], price: 1000 }, { range: [10000, 20000], price: 3000 }, ]; const peoplePriceTiers = [ { range: [1, 50], price: 50 }, { range: [51, 200], price: 150 }, { range: [201, 1000], price: 500 }, ]; // Calculate price based on input function calculatePrice(ipCount, peopleCount) { let ipPrice = 0; let peoplePrice = 0; // Find the correct pricing tier for IP addresses for (const tier of ipPriceTiers) { if (ipCount >= tier.range[0] && ipCount <= tier.range[1]) { ipPrice = tier.price; break; } } // Find the correct pricing tier for People for (const tier of peoplePriceTiers) { if (peopleCount >= tier.range[0] && peopleCount <= tier.range[1]) { peoplePrice = tier.price; break; } } return ipPrice + peoplePrice; } // Event listener for the form submission or calculation trigger $w.onReady(function () { $w('#calculateButton').onClick(() => { const ipCount = Number($w('#ipInput').value); const peopleCount = Number($w('#peopleInput').value); if (!ipCount || !peopleCount || ipCount < 1 || peopleCount < 1) { $w('#resultText').text = 'Please enter valid numbers for IPs and People.'; return; } const totalPrice = calculatePrice(ipCount, peopleCount); $w('#resultText').text = `Total Price: £${totalPrice}`; }); });
top of page

IT Solutions
for Your Industry
CYBERMARKET

Agriculture

I'm a paragraph. Click here to add your own text and edit me. It’s easy. Just click “Edit Text” or double click me to add your own content and make changes to the font. I’m a great place for you to tell a story and let your users know a little more about you.

Banking & Financial Services

I'm a paragraph. Click here to add your own text and edit me. It’s easy. Just click “Edit Text” or double click me to add your own content and make changes to the font. I’m a great place for you to tell a story and let your users know a little more about you.

Education

I'm a paragraph. Click here to add your own text and edit me. It’s easy. Just click “Edit Text” or double click me to add your own content and make changes to the font. I’m a great place for you to tell a story and let your users know a little more about you.

Energy & Utilities

I'm a paragraph. Click here to add your own text and edit me. It’s easy. Just click “Edit Text” or double click me to add your own content and make changes to the font. I’m a great place for you to tell a story and let your users know a little more about you.

Government

I'm a paragraph. Click here to add your own text and edit me. It’s easy. Just click “Edit Text” or double click me to add your own content and make changes to the font. I’m a great place for you to tell a story and let your users know a little more about you.

I'm a paragraph. Click here to add your own text and edit me. It's easy.

bottom of page