Skip to content

Instantly share code, notes, and snippets.

@jainnidhi
Created August 24, 2018 05:41
Show Gist options
  • Save jainnidhi/7db4c728c7a8596a3693441f003e750f to your computer and use it in GitHub Desktop.
Save jainnidhi/7db4c728c7a8596a3693441f003e750f to your computer and use it in GitHub Desktop.
Smooth scroll on menu click JS
$('.menu nav > ul > li > a').click(function (e) {
var linkHref = $(this).attr("href");
var idElement = linkHref.substr(linkHref.indexOf("#"));
$('html, body').animate({
scrollTop: $(idElement).offset().top
}, 1000);
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment