Wiki/Scroll Page Script: Difference between revisions

From Piszczynski
piszczynski>Aleks
(Created page with " == Script to scroll a page automatically in web browser == <nowiki> //**Run the below in the Console when Inspecting Element in Chrome** function scroll(speed) { $('html...")
 
m (1 revision imported)
 
(No difference)

Latest revision as of 22:32, 15 November 2023

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