Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. $('#cnt-up').click(function() {
  2. itemsAmount.val(Math.min(parseInt($('#nbItems').val()) + 1, 20));
  3. $("#nbItems").trigger("change"); // add this line
  4. });
  5. $('#cnt-down').click(function() {
  6. itemsAmount.val(Math.max(parseInt($('#nbItems').val()) - 1, 0));
  7. $("#nbItems").trigger("change"); // add this line
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement