Advertisement
Jailout2000

JavaScript One-Liners

Oct 23rd, 2014
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Scroll to bottom of page every 100ms.
  2. var autoScroller=function(){window.scroll(document.body.scrollLeft,document.body.scrollHeight);};setInterval(autoScroller,100);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement