79547120

Date: 2025-03-31 19:43:43
Score: 0.5
Natty:
Report link

I think you have a problem with observer function. You can replace your observer function with a listener for user scroll action.

window.addEventListener('scroll', function() {
  if (window.innerHeight + window.scrollY >= document.documentElement.scrollHeight) {
    loadNextPage();
  }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Stefino76