Project Cost Estimator
Select the services you require to get an instant SEO and Development estimate.
Estimated Total
function updateTotal() {
var checkboxes = document.getElementsByName('service');
var total = 0;
for (var i = 0; i < checkboxes.length; i++) {
if (checkboxes[i].checked) {
total += parseInt(checkboxes[i].value);
}
}
document.getElementById('total-display').innerText = '$' + total.toLocaleString();
}
$0