This question has been asked many times, but most of them were unanswered and some of the solutions I tried did not work out.
In my page (angularjs), only the left half of it scrollable, I have put it inside a div element. Now how do I implement scroll to top inside the scrollable div.
For the entire page, i was able to do it with the below code
/** scroll to top function */
$scope.scrollToTop = function($var) {
$('html, body').animate({
scrollTop: 0
}, 'fast');
};
How do I modify it so only in the left part we can scroll to top