Skip to content

Instantly share code, notes, and snippets.

@crutchcorn
Last active December 18, 2018 16:48
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 crutchcorn/422b5b3abf6f430dae63178d1982e3ff to your computer and use it in GitHub Desktop.
Save crutchcorn/422b5b3abf6f430dae63178d1982e3ff to your computer and use it in GitHub Desktop.
Ya ever want to scroll to the top of a page to take a screenshot on a 3rd party website? No? Oh. Okay.
a = setInterval(() => window.scrollTo(0, document.body.scrollHeight), 100);
clearInterval(a)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment