Last Updated: January 03, 2018
·
16.37K
· domon

Keep scrolling to bottom of a web page with JavaScript

Paste the following to the console of developer tools:

var scrollToBottom = function() {
  window.scrollTo(0, document.body.scrollHeight);
}
var delay = 2000;
var intervalID = setInterval(scroll, delay);

To stop scrolling, use the following code:

window.clearInterval(intervalID);