Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. //удаление товара из корзины в попапе
  2. $(document).on("click", '.t-basket__close', function(e) {
  3. e.preventDefault();
  4. var id = $(this).attr('itemId');
  5. $.ajax({
  6. url: '/local/ajax/delforbasket.php',
  7. data: {
  8. id: id,
  9. },
  10. dataType: 'json',
  11. success: function(result){
  12. $('.header__h-info li.h-info__item-basket span.h-info__count').text(parseInt($('.header__h-info li.h-info__item-basket span.h-info__count').text())-1);
  13.  
  14. // начало аджакс запроса обновления корзины
  15. $.ajax({
  16. url:'/local/ajax/addtocart.php',
  17. type:'POST',
  18. data:{'basket':'refresh'},
  19. success: function(data) {
  20. $('#basket_popup').html(data);
  21.  
  22. },
  23. })
  24. // конец запроса
  25. }
  26. });
  27. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement