Код: Выделить всё
function f(){
var price = $('#unitprice').val();
var quantity = $('#quantity').val();
total = price*quantity;
$('#total').val(total);
return;
};
/KG
Подробнее здесь: https://stackoverflow.com/questions/603 ... ms-in-cart
Код: Выделить всё
function f(){
var price = $('#unitprice').val();
var quantity = $('#quantity').val();
total = price*quantity;
$('#total').val(total);
return;
};