Created
July 21, 2016 02:08
-
-
Save rob1121/e0a4126d7236db2f6e4a7a5ef5e4aa57 to your computer and use it in GitHub Desktop.
scroll to top using jquery
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
$('#someAnchor').click(function() { | |
$('html, body').animate({ scrollTop:0 }, 'fast'); | |
return false; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment