<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
// This button will increment the value
$('.qtyplus').click(function(e){
// Stop acting like a button
e.preventDefault();
// Get the field name
var fieldName = $(this).prev();
// Get its current value
var currentVal = parseInt(fieldName.val());
// If is not undefined
if (!isNaN(currentVal )&& currentVal < 5) {
// Increment
fieldName.val(currentVal + 1);
} else {
// Otherwise put a 0 there
fieldName.val(5);
}
});
// This button will decrement the value till 0
$(".qtyminus").click(function(e) {
// Stop acting like a button
e.preventDefault();
// Get the field name
var fieldName = $(this).next();
// Get its current value
var currentVal = parseInt(fieldName.val());
// If it isn't undefined or its greater than 0
if (!isNaN(currentVal) && currentVal > 0) {
// Decrement one
fieldName.val(currentVal - 1);
} else {
// Otherwise put a 0 there
fieldName.val(0);
}
});
});
</script>
<form id='myform' method='POST' action='#'>
<input type='button' value='-' class='qtyminus' field='quantity' />
<input type='text' name='quantity' value='0' />
<input type='button' value='+' class='qtyplus' field='quantity' /><br />
<input type='button' value='-' class='qtyminus' field='quantity' />
<input type='text' name='quantity' value='0' />
<input type='button' value='+' class='qtyplus' field='quantity' /><br />
<input type='button' value='-' class='qtyminus' field='quantity' />
<input type='text' name='quantity' value='0' />
<input type='button' value='+' class='qtyplus' field='quantity' />
</form>