Skip to content

Instantly share code, notes, and snippets.

@ar7n
Created July 12, 2015 09:02
Show Gist options
  • Save ar7n/ec02c721ca8fec2859b5 to your computer and use it in GitHub Desktop.
Save ar7n/ec02c721ca8fec2859b5 to your computer and use it in GitHub Desktop.
jQuery 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