JavaScript: scroll to bottom every second
Start it in console:
var scroller;
(function scroll() {
// Do something every second
window.scrollTo(0,document.body.scrollHeight);
scroller = setTimeout(scroll, 1000);
})();
Stop it:
clearTimeout(scroller);
No comments to display
No comments to display