Last active
December 17, 2015 00:49
-
-
Save rmsj/5523685 to your computer and use it in GitHub Desktop.
Scrool top with jquery and a link
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
jQuery(document).ready(function() { | |
jQuery('a.back_top_link').click(function(){ | |
jQuery('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