Skip to content

Instantly share code, notes, and snippets.

@YauhenKavalchuk
Last active June 2, 2017 13:43
Show Gist options
  • Save YauhenKavalchuk/d07bf0079a49325dfd5a to your computer and use it in GitHub Desktop.
Save YauhenKavalchuk/d07bf0079a49325dfd5a to your computer and use it in GitHub Desktop.
$(".navigation li").on("click","a", function (event) {
event.preventDefault();
var id = $(this).attr('href'),
top = $(id).offset().top;
$('body,html').animate({scrollTop: top}, 1500);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment