Skip to content

Instantly share code, notes, and snippets.

@EvanHerman
Created November 6, 2015 00:48
Show Gist options
  • Save EvanHerman/0ba6f892902a39bbf80f to your computer and use it in GitHub Desktop.
Save EvanHerman/0ba6f892902a39bbf80f to your computer and use it in GitHub Desktop.
jQuery smooth scroll to an element in the dom (without third party plugin)
jQuery( 'html, body' ).animate({
scrollTop: jQuery( "#elementtoScrollToID" ).offset().top
}, 2000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment