Skip to content

Instantly share code, notes, and snippets.

@ricardoalcocer
Created August 27, 2019 17:04
Show Gist options
  • Save ricardoalcocer/2c199faf4885a79b3399f79abe11e78f to your computer and use it in GitHub Desktop.
Save ricardoalcocer/2c199faf4885a79b3399f79abe11e78f to your computer and use it in GitHub Desktop.
Detect Scroll to bottom
$(window).scroll(function() {
if($(window).scrollTop() + $(window).height() == $(document).height()) {
alert("bottom!");
// getData();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment