Skip to content

Instantly share code, notes, and snippets.

@szabo92
Created September 10, 2018 18:57
Show Gist options
  • Save szabo92/66e54ad28c2e75fb6e00ce567c720643 to your computer and use it in GitHub Desktop.
Save szabo92/66e54ad28c2e75fb6e00ce567c720643 to your computer and use it in GitHub Desktop.
Load more data on scroll
window.onscroll = function() {
if (window.scrollY + 1 > document.body.clientHeight - window.innerHeight) {
// load more data
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment