Just check this out:
$(document).ready(function() { $(".scroll").click(function(event){ $('html, body').animate({scrollTop: '+=150px'}, 800); }); });
This will cause the scroller to scroll from its current position when your item is clicked
And 150px is used to scroll down to 150px
Yatin Khullar Aug 20 '15 at 8:17 2015-08-20 08:17
source share