Skip to content

Instantly share code, notes, and snippets.

@ahmattox
Created May 22, 2012 15:49
Show Gist options
  • Save ahmattox/2769906 to your computer and use it in GitHub Desktop.
Save ahmattox/2769906 to your computer and use it in GitHub Desktop.
Smooth scroll all links with internal anchors.
$(document).ready(function() {
$('a[href^="#"]').click(function(event) {
$('body').animate({
'scrollTop': $($(this).attr('href')).position().top - 20
}, 300);
event.preventDefault();
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment