Skip to content

Instantly share code, notes, and snippets.

@khoand0000
Created May 14, 2015 05:20
Show Gist options
  • Save khoand0000/e8ad0edbd68c01e8cb46 to your computer and use it in GitHub Desktop.
Save khoand0000/e8ad0edbd68c01e8cb46 to your computer and use it in GitHub Desktop.
Infinity scrolling
$(window).scroll(function(){
// maybe include - $('#footer').outerHeight(true) <-- height with margin
if ($(window).scrollTop() >= $(document).height() - $(window).height()) {
// do something, load more products, etc
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment