hello friends
i want to creat a calculator in my form for calculate total price in real time for exemple" total field = price field + quantity field"
my form is a html form and price value is php value
<form action="" method="post" name="formulaireajout" class="formulaireajout" id="formulaireajoutid">
<input name="price" type="text" id="pricefield" value="<?php echo $row_itemdetaille['price']; ?>" readonly>
<input name="quantity" type="number" min="1" max="20" value="1" id="quantityfield">
<input name="total" type="text" id="totalfield" value="total" readonly>
</form>
i can make calculator in php but i must submit what i want is change total directly when quantity change.
i need help friends