Last active
February 13, 2023 21:26
-
-
Save ItsJonQ/076f73a68fc677a9f05f9d8c3d6761ff to your computer and use it in GitHub Desktop.
Auto scroll the browser
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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