$(document).ready(function() { var total = 0; var totalz = Number(total).toFixed(2); function calcTotal() { $("input:checked, select:selected").each(function() { //This happens for each checked input field //var value = $(this).attr("value"); //var value = $(this).attr("data-prezzo"); var value = $(this).data('prezzo'); total += parseFloat(value); totalz = Number(total).toFixed(2); }); } function calcTotal1() { $("input:checked, select:selected").each(function() { //This happens for each checked input field //var value = $(this).attr("value"); //var value = $(this).attr("data-prezzo"); var value = $(this).data('prezzo'); total += parseFloat(value); totalz = Number(total).toFixed(2); }); } //This happens when the page loads calcTotal(); /* $("form").before('

Total: ' + total + '

'); $(":submit").before('

Total: ' + total + '

'); */ $("#riassunto").html('' + totalz + '
Prices are VAT and Shipping fees excluded.
'); $("#riassuntot").html('' + totalz + '
Prices are VAT and Shipping fees excluded.
'); $("input:checkbox, input:radio, select").click(function() { total = 0; calcTotal1(); $("span.totale").html("" + totalz + "
Prices are VAT and Shipping fees excluded.
"); }); });