Last active
September 19, 2017 13:30
-
-
Save pabliqe/50408d797e2a3425628ef56ee7f54ae5 to your computer and use it in GitHub Desktop.
Bookmarklet to scroll a webpage automatically
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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