Определить скролл к низу документа если window.offSetY не работает

PHOTO EMBED

Thu Jan 27 2022 09:30:19 GMT+0000 (Coordinated Universal Time)

Saved by @happy_cutman #react.js

const handleScrollBotto = () => {
    // @ts-ignore
  // за основу берется положение определенного элемента страницы
    const pos = document.getElementById(elementId).getBoundingClientRect()
    if (document.body.offsetHeight - (pos.height + pos.y) > 100) {
      setIsFetchingMore(true)
    }
  };
content_copyCOPY