Skip to content

Instantly share code, notes, and snippets.

@harrislapiroff
Last active December 19, 2015 00:29
Show Gist options
  • Save harrislapiroff/5869540 to your computer and use it in GitHub Desktop.
Save harrislapiroff/5869540 to your computer and use it in GitHub Desktop.
Add smooth scrolling to in-page anchors.
$(document.body).on('click', '[data-smooth-scroll]', function(e){
e.preventDefault();
$('html,body').animate({scrollTop:$(this.hash).offset().top}, 500);
if (Modernizr.history) window.history.pushState({}, this.hash, this.hash);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment