Today I had to look at twitter page which was very long. Twitter load results when you reach the bottom of the page. And each time twitter load very few results so it was becoming very tiring to see page in one go. So, I decided to do this task programmatically using JavaScript. Open the chrome developer console and run these three lines.
function A(){console.log("Scrolling ...");window.scrollTo(0,document.body.scrollHeight)} function B(){window.setInterval(A,1000)} B()
One thought on “Load Twitter Page using JavaScript”