Wiki/Scroll Page Script

From Piszczynski
Revision as of 22:32, 15 November 2023 by Aleks (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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);