Skip to content

Instantly share code, notes, and snippets.

@alesmit
Created November 8, 2018 00:01
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 alesmit/100752fe3412bf60ada5782f1b09270e to your computer and use it in GitHub Desktop.
Save alesmit/100752fe3412bf60ada5782f1b09270e to your computer and use it in GitHub Desktop.
Don't Stop Scrolling
// to make it scroll forever
let interval = setInterval(() => window.scrollTo(0, document.body.scrollHeight));
// to stop it
clearInterval(interval);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment