Advertisement
Guest User

Untitled

a guest
Mar 21st, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. $(".updateChild").click(function() {
  2. for (var i = 0; i < inventory.length; i++) {
  3. if(inventory[i].list._id === $(this).attr('data-id')) {
  4. inventory[i].list.qty = $(this).val();
  5. }
  6. localStorage.setItem('cartItems', JSON.stringify(inventory));
  7. console.log(JSON.stringify(inventory));
  8. }
  9. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement