jquery- sum of dynamic created column

myzaikp

New Member
I have a table with dynamic created rows. Now I need to calculate sum of one column of it. This code working only for 1st row:\[code\]$('.class').each(function() { sum += parseFloat($(this).val()); sum = sum.toFixed(2);});\[/code\]How I can do this?
 
Back
Top