Skip to content

Instantly share code, notes, and snippets.

@tibbon
Created August 13, 2013 15:55
Show Gist options
  • Save tibbon/6222633 to your computer and use it in GitHub Desktop.
Save tibbon/6222633 to your computer and use it in GitHub Desktop.
Infinite Scroll Logic
$(window).scroll(function() {
// Cache our jQuery selector for window
var win = $(window);
// Infinite scroll math!
if(win.height() + win.scrollTop() >= $(document).height()) {
populateCountries();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment