Skip to content

Instantly share code, notes, and snippets.

@zillingen
Last active September 27, 2016 08:11
Show Gist options
  • Save zillingen/eea6b0ed2495bcedd1af8a8c4d1b191c to your computer and use it in GitHub Desktop.
Save zillingen/eea6b0ed2495bcedd1af8a8c4d1b191c to your computer and use it in GitHub Desktop.
/*Прокрутка страницы к заданному элементу*/
$("#button").click(function() {
$('html, body').animate({
scrollTop: $("#myDiv").offset().top
}, 2000);
});
@zillingen
Copy link
Author

ept

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment