- 1
 - 2
 - 3
 - 4
 - 5
 - 6
 
function calculateRow(element) {
            var qty = element.val();
            var price = element.parent().next().next().children().text();
            var total = (qty * price).toFixed(2);
            $(element).parent().next().next().next().children().first().text(total);
        }
                                
 Follow us!
Комментарии (2) RSS
Добавить комментарий