Skip to content

Instantly share code, notes, and snippets.

@evild70
Last active August 29, 2015 14:13
Show Gist options
  • Save evild70/ae7ddfd40276f320d050 to your computer and use it in GitHub Desktop.
Save evild70/ae7ddfd40276f320d050 to your computer and use it in GitHub Desktop.
Animate to Hash
$('a[href*=#]:not([href=#])').bind('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 - $header.height()
}, 1000);
if (!$body.hasClass('no-animate')) {
return false;
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment