Skip to content

Instantly share code, notes, and snippets.

@wizardishungry
Last active August 29, 2015 14:25
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 wizardishungry/18ea384f51d1b9c25e6c to your computer and use it in GitHub Desktop.
Save wizardishungry/18ea384f51d1b9c25e6c to your computer and use it in GitHub Desktop.
fun javscript stuff I made
/*
scroll an infinite scrolling window forever
*/
var pos=-1; var f = function() { if(pos==document.body.scrollHeight) return; window.scrollTo(0,document.body.scrollHeight); pos=document.body.scrollHeight; window.setTimeout(f, 1000); }; f();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment