Return to Snippet

Revision: 51854
at October 6, 2011 06:00 by realpeterz


Initial Code
$('.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;
});

Initial URL


Initial Description


Initial Title
Smooth scroll (minimal)

Initial Tags


Initial Language
jQuery