Skip to content

Instantly share code, notes, and snippets.

@mfifth
Created May 11, 2017 23:29
Show Gist options
  • Select an option

  • Save mfifth/d911380cf3a030869012900b9d44e5c0 to your computer and use it in GitHub Desktop.

Select an option

Save mfifth/d911380cf3a030869012900b9d44e5c0 to your computer and use it in GitHub Desktop.
$('.my-div').on('scroll', function() {
if ($(this).scrollTop() + $(this).innerHeight() >= $(this)[0].scrollHeight) {
console.log("You have reached the bottom!");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment