Skip to content

Instantly share code, notes, and snippets.

@saboyadev
Last active June 5, 2022 19:01
Show Gist options
  • Select an option

  • Save saboyadev/8a50bfed301d932ccf1e7fd4cb0fa684 to your computer and use it in GitHub Desktop.

Select an option

Save saboyadev/8a50bfed301d932ccf1e7fd4cb0fa684 to your computer and use it in GitHub Desktop.
// Smooth Scrolling
$('.btn').on('click', function(e) {
if (this.hash !== '') {
e.preventDefault();
const hash = this.hash;
$('html, body').animate(
{
scrollTop: $(hash).offset().top
},
800
);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment