Created
January 12, 2018 14:47
-
-
Save ScarletPonytail/bfbe4934dd4d729ec8e198454df7d8ab to your computer and use it in GitHub Desktop.
JS - Scroll back to top on click
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
// 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