how to scroll to the bottom of the page using javascript by default code example
Example 1: javascript detect scroll to bottom of page
function scrolled(e) {
if (myDiv.offsetHeight + myDiv.scrollTop >= myDiv.scrollHeight) {
scrolledToBottom(e);
}
}
Example 2: auto scroll to bottom of page js
window.scrollTo(0,document.body.scrollHeight);