Skip to content

Instantly share code, notes, and snippets.

@amouratoglou
Created April 27, 2019 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amouratoglou/9baf0712c5e2b3c26468c9b70ad4c821 to your computer and use it in GitHub Desktop.
Save amouratoglou/9baf0712c5e2b3c26468c9b70ad4c821 to your computer and use it in GitHub Desktop.
smooth scroll on click to anchor link jquery #js #jquery #smoothscroll
$('a').click(function(){
$('html, body').animate({
scrollTop: $( $.attr(this, 'href') ).offset().top
}, 500);
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment