Skip to content

Instantly share code, notes, and snippets.

@kferran
Last active December 22, 2015 04:29
Show Gist options
  • Save kferran/6417452 to your computer and use it in GitHub Desktop.
Save kferran/6417452 to your computer and use it in GitHub Desktop.
If you want the URL to be updated, do it within the animate callback:
$('a[href^="#"]').on('click',function (e) {
e.preventDefault();
var target = this.hash,
$target = $(target);
$('html, body').stop().animate({
'scrollTop': $target.offset().top
}, 900, 'swing', function () {
// window.location.hash = target;
});
});
// Removes hash from url
$('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;
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment