Skip to content

Instantly share code, notes, and snippets.

@nicovanzyl
Created October 16, 2015 11:53
Show Gist options
  • Save nicovanzyl/d039a07e4ebd29895222 to your computer and use it in GitHub Desktop.
Save nicovanzyl/d039a07e4ebd29895222 to your computer and use it in GitHub Desktop.
jQuery animate scroll to element (using anchor href and element ID)
// Animate scrolling
$('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
},
// Duration
400);
return false;
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment