Last active
June 10, 2022 14:51
-
-
Save phunguyen19/1c478b16de6e099c4aa7ea037b13618f to your computer and use it in GitHub Desktop.
jquery smooth scroll top
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
/** | |
* Smooth scroll top | |
*/ | |
(function($){ $(function(){ | |
$("a[href='#top']").click(function(event) { | |
event.preventDefault(); | |
$("html, body").animate({ scrollTop: 0 }, 1000); | |
}); | |
}); })(jQuery); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment