Skip to content

Instantly share code, notes, and snippets.

@weird-coon
Created June 26, 2018 03:22
Show Gist options
  • Save weird-coon/1420e1ae3294ec9d5dc5107b69635b44 to your computer and use it in GitHub Desktop.
Save weird-coon/1420e1ae3294ec9d5dc5107b69635b44 to your computer and use it in GitHub Desktop.
Simple Jquery smoothie back to top button
// Back to top function
$('#top').click(function() {
$("html, body").animate({ scrollTop: 0 }, 600);
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment