Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save karamanskiy/8ec5e1bac1151d7d6949b113e1c71f93 to your computer and use it in GitHub Desktop.
Save karamanskiy/8ec5e1bac1151d7d6949b113e1c71f93 to your computer and use it in GitHub Desktop.
Скролл к элементу
// Скролл к элементу
$(".menu").on("click","a.scroll", function (e) {
e.preventDefault();
var id = $(this).attr('href'),
top = $(id).offset().top;
$('body,html').animate({scrollTop: top}, 600);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment