Skip to content

Instantly share code, notes, and snippets.

@calvinchoy
Last active April 4, 2020 09:26
Show Gist options
  • Save calvinchoy/09efc163b8a87a6f875d to your computer and use it in GitHub Desktop.
Save calvinchoy/09efc163b8a87a6f875d to your computer and use it in GitHub Desktop.
var $root = $('html, body');
$('a').click(function() {
var href = $.attr(this, 'href');
$root.animate({
scrollTop: $(href).offset().top
}, 500, function () {
window.location.hash = href;
});
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment