How do I scroll to the top of the page using JavaScript? The scrollbar instantly jumping to the top of the page is desirable too as I\'m not looking to achieve smooth scroll
If you do want smooth scrolling, try something like this:
$("a[href='#top']").click(function() { $("html, body").animate({ scrollTop: 0 }, "slow"); return false; });
That will take any tag whose href="#top" and make it smooth scroll to the top.
href="#top"