Skip to content

Instantly share code, notes, and snippets.

@liquorice
Created July 29, 2011 02:14
Show Gist options
  • Save liquorice/1113000 to your computer and use it in GitHub Desktop.
Save liquorice/1113000 to your computer and use it in GitHub Desktop.
animated hash-link scrolling
$('.scroll-to').click(function(e) {
target = $($(this).attr('href'));
if (target.offset()) {
$('html, body').animate({scrollTop: target.offset().top + 'px'}, 500);
}
e.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment