I have the following jQuery snippet
$('html, body').animate({
scrollTop: 178
}, 2000);
I have some pagination buttons at the bottom of the page, that trigger a javascript function when they are clicked. In this JS function, the above snippet is called.
This works fine to scroll the page back to the top just above the menu, but first of all the page seems to jump down to the very bottom abruptly (unless you are already at the very bottom) before scrolling up like it should?
I am tearing my hair out trying to figure this behaviour out.
I'm not sure how else to explain it apart from giving a link to the site: http://tinyurl.com/apdloyl
Go to the bottom of the page once the results have loaded, scroll up slightly, then click the next page button. And the weirdness happens as the page jumps down before scrolling back up.
Thanks for any help.