Skip to content

Instantly share code, notes, and snippets.

@charlycoste
Created January 9, 2013 13:15
Show Gist options
  • Save charlycoste/4493032 to your computer and use it in GitHub Desktop.
Save charlycoste/4493032 to your computer and use it in GitHub Desktop.
// see http://www.creativejuiz.fr/blog/tutoriels/jquery-effet-smooth-scroll-defilement-fluide
$('a[href^="#"]').click(function(){
var the_id = $(this).attr("href");
$('html, body').animate({
scrollTop:$(the_id).offset().top
}, 'slow');
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment