Skip to content Skip to sidebar Skip to footer

Scroll A Scrollable Div To Its Top Programatically

I have a scrollable div with a fixed height and a long list inside it. I want to scroll to top in the scrollable div when I scroll down with the long list. how should I start with

Solution 1:

For scrolling to top on page body :

$('html, body').animate({ scrollTop: (0) }, 'slow');

For scrolling to top on div :

$('#yourDivId').animate({ scrollTop: (0) }, 'slow');

Hope this helps...

Post a Comment for "Scroll A Scrollable Div To Its Top Programatically"