Created
October 2, 2012 13:52
-
-
Save wutupake/3819329 to your computer and use it in GitHub Desktop.
JS: Scroll to the top of the page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a name="top"></a> ... <a href="#top">Back to top</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
$('a[href=#top]').click(function(){ | |
$('html, body').animate({scrollTop:0}, 'slow'); | |
return false; | |
}); | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment