Skip to content

Instantly share code, notes, and snippets.

@jbutko
Created February 25, 2014 19:27
Show Gist options
  • Save jbutko/9215911 to your computer and use it in GitHub Desktop.
Save jbutko/9215911 to your computer and use it in GitHub Desktop.
jQuery: Scroll to ID element
$('a[href*=#]').click(function(){
$('html, body').animate({
scrollTop: $( $.attr(this, 'href') ).offset().top
}, 700, 'linear');
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment