Skip to content

Instantly share code, notes, and snippets.

@wilhelser
Created July 19, 2014 21:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wilhelser/15203afae6c314a4f134 to your computer and use it in GitHub Desktop.
Save wilhelser/15203afae6c314a4f134 to your computer and use it in GitHub Desktop.
Smooth Scrolling to Anchor
$(function() {
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
});
// Taken from http://css-tricks.com/snippets/jquery/smooth-scrolling/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment