Skip to content

Instantly share code, notes, and snippets.

@akrug23
Created August 14, 2016 19:52
Show Gist options
  • Save akrug23/643b0922d01a2366784752d0b5b65a9e to your computer and use it in GitHub Desktop.
Save akrug23/643b0922d01a2366784752d0b5b65a9e to your computer and use it in GitHub Desktop.
Scroll to element
$("#button").click(function() {
$('html, body').animate({
scrollTop: $("#elementtoScrollToID").offset().top
}, 2000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment