Skip to content

Instantly share code, notes, and snippets.

@gecugamo
Last active November 30, 2015 16:47
Show Gist options
  • Save gecugamo/dd16b6436eedab9c3296 to your computer and use it in GitHub Desktop.
Save gecugamo/dd16b6436eedab9c3296 to your computer and use it in GitHub Desktop.
Simple Back to Top
(function IIFE($) {
$('.back-to-top').on('click', function(e) {
e.preventDefault();
$('html, body').animate({
scrollTop: 0
}, 500);
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment