Сообщение от Viral
|
$("#inputCell").each(function() {
Перебирает все элементы с ID = inputCell
А что мы знаем про использование атрибута ID?
|
Спасибо большое вот как помогли
<!-- HTML -->
<p>Cost<input type="number" id="cost" value="0" min="0" max="1000" /></p>
<p>Cost (incl. shipment)<input type="number" id="result" value="" /></p>
<p><button id="run">Submit</button></p>