I have an order form with about 30 text fields that contain numerical values. I\'d like to calculate the sum of all those values on blur.
I know how to select all te
This should fix it:
var total = 0; $(".price").each( function(){ total += $(this).val() * 1; });