xxxxxxxxxx
function scrollToBottom() {
const scrollingElement = document.scrollingElement || document.body
scrollingElement.scrollTop = scrollingElement.scrollHeight
}
xxxxxxxxxx
function gotoBottom(id){
var element = document.getElementById(id);
element.scrollTop = element.scrollHeight - element.clientHeight;
}
xxxxxxxxxx
window.onscroll = function(ev) {
if ((window.innerHeight + window.scrollY) >= document.body.offsetHeight) {
// you're at the bottom of the page
}
};
xxxxxxxxxx
setTimeout(() => {
window.scrollTo(0, document.body.scrollHeight);
}, 100)
xxxxxxxxxx
var notChangedStepsCount = 0;
var scrollInterval = setInterval(function() {
var element = document.querySelector(".element-selector");
if (element) {
// element found
clearInterval(scrollInterval);
element.scrollIntoView();
} else if((document.documentElement.scrollTop + window.innerHeight) != document.documentElement.scrollHeight) {
// no element -> scrolling
notChangedStepsCount = 0;
document.documentElement.scrollTop = document.documentElement.scrollHeight;
} else if (notChangedStepsCount > 20) {
// no more space to scroll
clearInterval(scrollInterval);
} else {
// waiting for possible extension (autoload) of the page
notChangedStepsCount++;
}
}, 50);
xxxxxxxxxx
// Select the HTML body element
var body = document.body;
// Scroll to the bottom of the page
body.scrollTop = body.scrollHeight;