Skip to content

Instantly share code, notes, and snippets.

@ScarletPonytail
Created January 12, 2018 14:47
Show Gist options
  • Save ScarletPonytail/bfbe4934dd4d729ec8e198454df7d8ab to your computer and use it in GitHub Desktop.
Save ScarletPonytail/bfbe4934dd4d729ec8e198454df7d8ab to your computer and use it in GitHub Desktop.
JS - Scroll back to top on click
// Global - Scroll to the top of the page
$j(".introView button").click(function(){
$j('html, body').animate({ scrollTop: 0 }, 'slow');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment