window.onscroll = () => { return document.documentElement.scrollTop + window.innerHeight === document.documentElement.offsetHeight } code example
Example: javascript detect scroll to bottom of page
function scrolled(e) {
if (myDiv.offsetHeight + myDiv.scrollTop >= myDiv.scrollHeight) {
scrolledToBottom(e);
}
}