Skip to content

Instantly share code, notes, and snippets.

@kartick14
Created June 18, 2018 12:40
Show Gist options
  • Save kartick14/bf84faed81a06e4b6fa20e39868a969c to your computer and use it in GitHub Desktop.
Save kartick14/bf84faed81a06e4b6fa20e39868a969c to your computer and use it in GitHub Desktop.
$('a[href^="#"]').on('click', function(event) {
var target = $(this.getAttribute('href'));
if( target.length ) {
event.preventDefault();
$('html, body').stop().animate({
scrollTop: target.offset().top
}, 1000);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment