Hi eveyone
I have form with multiple qty fields,I'd like to add the qty but pressing the add button and subtract the qty by pressing minus button, I got it working for one but I can not make it work for multiple qty fields,I have 24 qty fields, any help would be appreciate it.
<form>
<input name="minus1" type="button" class="button" id="minus1" value=" - " />
<input name="textfield1" type="text" id="textfield1" size="2" maxlength="2" value="0" />
<input name="add1" type="button" class="button" id="add1" value=" + " />
<input name="minus2" type="button" class="button" id="minus2" value=" - " />
<input name="textfield2" type="text" id="textfield2" size="2" maxlength="2" value="0" />
<input name="add2" type="button" class="button" id="add2" value=" + " />
......
</form>
$(function()
{
$("#add1").click(function(){
var newQty = +($("#textfield1").val()) + 1;
$("#textfield1").val(newQty);
});
$("#minus1").click(function(){
var newQty = +($("#textfield1").val()) - 1;
if(newQty < 0)newQty = 0;
$("#textfield1").val(newQty);
});
});