Guest User

Untitled

a guest
Aug 18th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function() {
  2.  
  3.     $('a.add_to_shoppin_cart').click(function () {
  4.  
  5.         var product_id = $(this).attr('rel');
  6.  
  7.         $.ajax({
  8.             type: 'post',
  9.             async: true,
  10.             url:  '/?page=shopping_cart',
  11.             data: 'action=add_to_shopping_cart&product_id='+product_id,
  12.             success: function(data) {
  13.  
  14.             }
  15.         });
  16.  
  17.         return false;
  18.  
  19.     });
  20.  
  21. });
Add Comment
Please, Sign In to add comment