Guest User

Untitled

a guest
Jan 19th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. $("#clear").click(function(){ //очистка
  2. newprice = 0;
  3. newcount = 0;
  4. id = 0;
  5. window.localStorage[keyprice] = newprice;
  6. window.localStorage[keyid] = id;
  7. window.localStorage[keycount] = newcount;
  8. $('#cart span#price').html(newprice+' руб. ').attr("price",newprice);
  9. $('#cart span.count').html(newcount);
  10. })
Add Comment
Please, Sign In to add comment