JSFiddle - React, Tailwind, and code Playground

by justi

JavaScript

var step;
for (step = 0; step < 50; step++) {
  setTimeout(function(){
	$('html, body').animate({ scrollTop:  $(document).height() }, 5000);
}, step*7000);
}

jQuery('button div:contains("Follow"):not(:contains("Following"))').each(function(k, v) { setTimeout(function() {v.click()}, Math.floor(Math.random()*1000 + k*2000) )} )