How to scroll to a specific element on a webpage using jQuery
How to scroll to a specific element on a webpage using jQuery
$('body').scrollTo('#target'); // Scroll screen to target element
$('body').scrollTo(500); // Scroll screen 500 pixels down
$('#scrollable').scrollTo(100); // Scroll individual element 100 pixels down