Skip to content

Instantly share code, notes, and snippets.

@sharkyak
Created December 17, 2015 06:55
Show Gist options
  • Select an option

  • Save sharkyak/88015a2f655001f078d7 to your computer and use it in GitHub Desktop.

Select an option

Save sharkyak/88015a2f655001f078d7 to your computer and use it in GitHub Desktop.
smooth scroll
$('a.scroll').click(function () {
elementClick = $(this).attr("href");
destination = $(elementClick).offset().top;
$('html,body').animate( { scrollTop: destination }, 800 );
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment