Skip to content

Instantly share code, notes, and snippets.

@raf924
Last active September 30, 2015 08:54
Show Gist options
  • Save raf924/b524bee556a5120bd831 to your computer and use it in GitHub Desktop.
Save raf924/b524bee556a5120bd831 to your computer and use it in GitHub Desktop.
A simple autoscroller
var interval = setInterval(function() {
if (document.body.scrollTop < (scrollBy(0,1),document.body.scrollTop)) { //test if body can be scrolled, tweak the number to change scroll speed
//Do whatever
} else {
clearInterval(interval); //stop scrolling
//jQuery("#nextNav").parent()[0].click();
}
}, 10);// Tweak that number to change scroll speed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment