Skip to content

Instantly share code, notes, and snippets.

@prayogateguh
Last active November 28, 2022 08:28
Show Gist options
  • Save prayogateguh/1f8b4f3a5059df5e94de4b76392172e6 to your computer and use it in GitHub Desktop.
Save prayogateguh/1f8b4f3a5059df5e94de4b76392172e6 to your computer and use it in GitHub Desktop.
// Start auto scroll
scroll=window.setInterval(function(){window.scrollTo(0,document.body.scrollHeight);},1000);
// Stop auto scroll
clearInterval(your_number_here);
// Stop all interval
function clearAllIntervals() {
for (var i = 1; i < 99999; i++)
window.clearInterval(i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment