Skip to content

Instantly share code, notes, and snippets.

@rmsj
Last active December 17, 2015 00:49
Show Gist options
  • Save rmsj/5523685 to your computer and use it in GitHub Desktop.
Save rmsj/5523685 to your computer and use it in GitHub Desktop.
Scrool top with jquery and a link
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