Skip to content

Instantly share code, notes, and snippets.

@ouyi
Created November 23, 2020 20:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ouyi/65529e49143d0b5aafbba692f5da1e57 to your computer and use it in GitHub Desktop.
Save ouyi/65529e49143d0b5aafbba692f5da1e57 to your computer and use it in GitHub Desktop.
Automatically scroll page up and down in JavaScript
setInterval(() => { window.scrollTo(0, document.body.scrollHeight); window.scrollTo(0, 0); }, 60000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment