Skip to content

Instantly share code, notes, and snippets.

@ibndawood
Created September 29, 2015 16:29
Show Gist options
  • Save ibndawood/eb32ce36a8956620b9eb to your computer and use it in GitHub Desktop.
Save ibndawood/eb32ce36a8956620b9eb to your computer and use it in GitHub Desktop.
Prevent scrolling to top
$('body').on('added_to_cart', function(){
$('.product-item').unblock(); // Unblock the product item
$('.cart-item').unblock();
$('.compare-list').unblock();
$('html,body').animate({
scrollTop: $('.top-cart-holder').offset().top - 20
}, 1000, function(){
$('.top-cart-holder .dropdown-toggle').dropdown('toggle');
});
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment