Skip to content

Instantly share code, notes, and snippets.

@alegut
Last active September 7, 2018 10:25
Show Gist options
  • Save alegut/6c59c35718652eb6e10ea49b0fa67753 to your computer and use it in GitHub Desktop.
Save alegut/6c59c35718652eb6e10ea49b0fa67753 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!");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment