To scroll to the top of the page in jQuery you can use the following snippet. This will scroll smmooth to the top of the page, for a instant scroll look at the Javascript Version.
Sample jQuery
$("a[href='#gotoTop']").click(function() { $("html, body").animate({ scrollTop: 0 }, "slow"); return false; });
RT @CodeSnippetsNET: How to scroll to the top of the page in #jQuery http://t.co/vZTuz4WGVu #js #javascript
RT @CodeSnippetsNET: How to scroll to the top of the page in #jQuery http://t.co/vZTuz4WGVu #js #javascript