Skip to content

Instantly share code, notes, and snippets.

@phunguyen19
Last active June 10, 2022 14:51
Show Gist options
  • Save phunguyen19/1c478b16de6e099c4aa7ea037b13618f to your computer and use it in GitHub Desktop.
Save phunguyen19/1c478b16de6e099c4aa7ea037b13618f to your computer and use it in GitHub Desktop.
jquery smooth scroll top
/**
* 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