Guest User

Untitled

a guest
Jan 23rd, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. jQuery('.addtocart').each(function() {
  2. var $self = jQuery(this),
  3. oldOnClick = $self.attr('onclick'),
  4. $product = $self.closest('.item');
  5.  
  6. $self.attr('data-onclick', oldOnClick).removeAttr('onclick');
  7. $self.off('click').on('click', function() {
  8. if($product.find('.input-text.qty').val() < 1)
  9. return false;
  10. else
  11. eval(jQuery(this).data('onclick'));
  12. });
  13. });
Add Comment
Please, Sign In to add comment