Так условие вообще не срабатывает:
window.onscroll = () => {
let bottomOfWindow = document.documentElement.scrollTop + window.innerHeight === document.documentElement.offsetHeight;
if (bottomOfWindow) {
//
}
};
А так срабатывает едва коснувшись скролла, не дойдя до низа окна:
window.onscroll = () => {
let bottomOfWindow = document.documentElement.scrollTop + document.documentElement.clientHeight === document.documentElement.offsetHeight;
if (bottomOfWindow) {
//
}
};
Подскажите как сделать кроссбраузерно?
Я использую Vue без JQuery