Skip to content

Instantly share code, notes, and snippets.

@joshuapekera
Forked from rodi01/jquery
Created May 24, 2012 04:18
Show Gist options
  • Save joshuapekera/2779391 to your computer and use it in GitHub Desktop.
Save joshuapekera/2779391 to your computer and use it in GitHub Desktop.
Animated Page Scroll with jQuery
$('.scrollPage').click(function() {
var elementClicked = $(this).attr("href");
var destination = $(elementClicked).offset().top;
$("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination-20}, 500 );
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment