I got a solution from stackoverflow to scroll to the top of the page like
$('html, body').animate({scrollTop: $("#page").offset().top}, 2000);
But I am not sure why to use 'html, body' for scrollTop instead of just 'html' ?
I got a solution from stackoverflow to scroll to the top of the page like
$('html, body').animate({scrollTop: $("#page").offset().top}, 2000);
But I am not sure why to use 'html, body' for scrollTop instead of just 'html' ?
Some browsers apply the "overall" scroll to document.documentElement
(the <html>
element) and others to document.body
(the <body>
element). For compatibility with both, you have to apply the scrolling to both.