Skip to content

Instantly share code, notes, and snippets.

@xeusteerapat
Created May 31, 2020 06:12
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 xeusteerapat/67526d3391db39a44cdb4146012b10f3 to your computer and use it in GitHub Desktop.
Save xeusteerapat/67526d3391db39a44cdb4146012b10f3 to your computer and use it in GitHub Desktop.
Auto scroll mouse to the bottom of the page.
let intervalID = window.setInterval(function() {
window.scrollTo(0, document.body.scrollHeight)
}, 1000)
// to stop
window.clearInterval(intervalID)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment