xxxxxxxxxx
const scrollDownId = setInterval(function() {
var previousScrollHeight = document.body.scrollHeight;
window.scrollTo(0, document.body.scrollHeight);
var currentScrollHeight = document.body.scrollHeight;
if (previousScrollHeight == currentScrollHeight) {
clearInterval(scrollDownId)
}
}, 300);