Skip to content

Instantly share code, notes, and snippets.

@lambdamusic
Last active April 4, 2024 22:04
Show Gist options
  • Save lambdamusic/4734334 to your computer and use it in GitHub Desktop.
Save lambdamusic/4734334 to your computer and use it in GitHub Desktop.
JavaScript: Go to top of page using jQuery #js
$( 'html, body' ).animate( { scrollTop: 0 }, 0 );
// or
$( 'html, body' ).animate( { scrollTop: 0 }, 'slow' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment