Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save paveltretyakovru/533ecb38986cff01d22f34e40d6b4fa8 to your computer and use it in GitHub Desktop.
Save paveltretyakovru/533ecb38986cff01d22f34e40d6b4fa8 to your computer and use it in GitHub Desktop.
Проверить существует ли прокрутка сайта, если да, то прокрутить страницу до элемента
if ($(document).height() > $(window).height()) {
$([document.documentElement, document.body]).animate({
scrollTop: $("#certificate-info h2").offset().top
}, 2000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment