$(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 + '