Skip to content

Instantly share code, notes, and snippets.

@ascheink
Created August 3, 2013 17:04
Show Gist options
  • Save ascheink/6147145 to your computer and use it in GitHub Desktop.
Save ascheink/6147145 to your computer and use it in GitHub Desktop.
scroll = function() { window.scrollTo(0, document.body.scrollHeight); }
int = setInterval(scroll, 1000); // start
clearInterval(int); // stop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment