.__ __ .__
_____ |__|________/ |_|__|_______ _____
/ \| \___ /\ __\ \___ // \
| Y Y \ |/ / | | | |/ /| Y Y \
|__|_| /__/_____ \ |__| |__/_____ \__|_| /
\/ \/ \/ \/
var lastScrollHeight = 0;
function autoScroll() {
var sh = document.documentElement.scrollHeight;
if (sh != lastScrollHeight) {
lastScrollHeight = sh;
document.documentElement.scrollTop = sh;
}
}
window.setInterval(autoScroll, 100);