Skip to content

Instantly share code, notes, and snippets.

@chirag64
Last active May 17, 2023 21:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chirag64/96d0a16327262af5f1f198661f23e244 to your computer and use it in GitHub Desktop.
Save chirag64/96d0a16327262af5f1f198661f23e244 to your computer and use it in GitHub Desktop.
window.addEventListener('scroll', (evt) => {
const loadMoreBtn = document.querySelector('.loadMoreBtn');
if ((loadMoreBtn.offsetTop) < (scrollY + 1000)) {
loadMoreBtn.click();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment