Skip to content

Instantly share code, notes, and snippets.

@manegame
Created November 7, 2016 14:44
Show Gist options
  • Save manegame/4f1dd5ef5673cb64b9b63e73141b1d2e to your computer and use it in GitHub Desktop.
Save manegame/4f1dd5ef5673cb64b9b63e73141b1d2e to your computer and use it in GitHub Desktop.
Reach bottom jQuery
$(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