# dev-js-autoscroll
var lastScrollHeight = 0;
function autoScroll() {
  var sh = document.documentElement.scrollHeight;
  if (sh != lastScrollHeight) {
    lastScrollHeight = sh;
    document.documentElement.scrollTop = sh;
  }
}
window.setInterval(autoScroll, 100);

The main thing is not death, but what dies inside us while we live
Last Changed: 2025/10/27 19:59
Made with pure php. All information on this website is only for educational purposes.