Skip to content

Instantly share code, notes, and snippets.

@Krabaton
Created May 13, 2016 23:10
Show Gist options
  • Save Krabaton/711196dcd46b90859d7d71c6e8440973 to your computer and use it in GitHub Desktop.
Save Krabaton/711196dcd46b90859d7d71c6e8440973 to your computer and use it in GitHub Desktop.
$('a[href^="#"]').on('click', function(e){
e.preventDefault();
var
$this = $(this),
target = $this.attr('href'),
strip = target.slice(1),
anchor = $("[id='"+ strip +"']");
$('html, body').animate({
scrollTop: anchor.offset().top
}, 2000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment