Skip to content

Instantly share code, notes, and snippets.

@ItsJonQ
Last active February 13, 2023 21:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ItsJonQ/076f73a68fc677a9f05f9d8c3d6761ff to your computer and use it in GitHub Desktop.
Save ItsJonQ/076f73a68fc677a9f05f9d8c3d6761ff to your computer and use it in GitHub Desktop.
Auto scroll the browser
var scroll = setInterval(() => {
window.scrollTo(0, document.documentElement.scrollHeight)
}, 2000)
var stopScrolling = () => {
clearInterval(scroll)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment