Добрый день.
Суть задачи, таблица в ней три столбца, нужно значение в одном ряду 1 и 2 столбец перемножить и записать в третий столбец. Загвоздка в том что html менять нельзя. Сумму сделал,а с произведением возникли проблемы и получаю NAN.
<table>
<tr>
<th><input type="text" ></th>
<th><input type="text" ></th>
<th><input type="text" ></th>
</tr>
<tr>
<th><input type="text"></th>
<th><input type="text"></th>
<th><input type="text"></th>
</tr>
<tr>
<th><input type="text"></th>
<th><input type="text"></th>
<th><input type="text"></th>
</tr>
</table>
var sum=0;
$('table tr').each(function(){
$(this).change(function() {
$(this).find('input[type=text]:last').val(sum);
$(this)
.find('input[type=text]')
.each(function () {
console.log(parseInt($(this).val()));
if(isNaN(parseInt($(this).val())))
console.log("NaN");
else
sum += parseInt($(this).val());
// sum *= parseInt($(this).val());
});
$(this).find('input[type=text]:last').val(sum);
sum=0;
});
});