Skip to content

Instantly share code, notes, and snippets.

@pabliqe
Last active September 19, 2017 13:30
Show Gist options
  • Save pabliqe/50408d797e2a3425628ef56ee7f54ae5 to your computer and use it in GitHub Desktop.
Save pabliqe/50408d797e2a3425628ef56ee7f54ae5 to your computer and use it in GitHub Desktop.
Bookmarklet to scroll a webpage automatically
javascript:(function(){
/* tired of scrolling? try this... */
var lazyScroll = setInterval(function() {
window.scrollTo(0, window.pageYOffset+1);
}, 0);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment