Сообщение от рони
|
тут что-то с логикой не так!!!
|
Получилось, но пришлось добавить еще один input
$(document).on("keyup", function(event) {
var jquery = $(event.target).closest("div.b_list");
if(jquery.length === 0) {return;}
var id = jquery.find('.b_id') .val();
var quantity = jquery.find('.b_quntity').val();
var price = jquery.find('.b_price') .val();
var new_price = quantity * price;
$(event.target).closest('div.b_list').find('.b_total').val(new_price);
console.log(new_price);
});