V
Size: a a a
V
АБ
АБ
NÁ
V
V
NÁ
<input type="text" id="price_product" value="{{ $product->price }}">
<input type="text" value="{{ $product->quantity }}" name="quantity" id="quantityProduct" />
<input type="text" class="js-item-total-price" value="{{ $product->price }}" id="sumProduct">
let priceProduct = document.getElementById('price_product');
let quantityProduct = document.getElementById('quantityProduct');
let sumProduct = document.getElementById('sumProduct');
const sumProduct = function() {
sumProduct.value = priceProduct.value * quantityProduct.value;
};
sumProduct();
MA
АБ
MA
NÁ
АБ
NÁ
MA
AP
NÁ
F
NÁ
NÁ
AP