Skip to content
Wiki/Scroll Page Script

Wiki/Scroll Page Script

Script to scroll a page automatically in web browser

//Run the below in the Console when Inspecting Element in Chrome function scroll(speed) { $(‘html, body’).animate({ scrollTop: $(document).height() - $(window).height() }, speed, function() { $(this).animate({ scrollTop: 0 }, speed); }); }

speed = 100000;

scroll(speed) setInterval(function(){scroll(speed)}, speed * 2);