Skip to content

Instantly share code, notes, and snippets.

@EfremovMS
Last active March 14, 2019 21:38
Show Gist options
  • Save EfremovMS/effb2e918d0081c6da69516acec74405 to your computer and use it in GitHub Desktop.
Save EfremovMS/effb2e918d0081c6da69516acec74405 to your computer and use it in GitHub Desktop.
JS scroll to element
$(function () {
// прокрутка к элементу
// - [all]
let to = $('.object').offset().top;
$('html, body').stop().animate({
scrollTop: to
}, 0);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment