Tag: scroll

Smooth Scroll of window to a div using jquery

if you want to scroll the window smoothly on click then you can make that using  this code to reach the particular div. jQuery(".addto_cart_button").click(function() { jQuery('html, body').animate({ scrollTop: jQuery("#cust-id").offset().top }, 2000); });   If you have multiple link to scroll.....
Click to Chat