Skip to content

Instantly share code, notes, and snippets.

@FokkeZB
Created April 1, 2013 18:05
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FokkeZB/5286565 to your computer and use it in GitHub Desktop.
Save FokkeZB/5286565 to your computer and use it in GitHub Desktop.
Use jQuery to slowly scroll to anchors instead of browsers default non-animated fashion.
$('a[href^="#"]').click(function (e) {
e.preventDefault();
$('html, body').animate({
scrollTop: $('a[name="'+$(this).attr('href').substr(1)+'"]').offset().top
}, 500);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment