Skip to content

Instantly share code, notes, and snippets.

@fredkingham
Created October 2, 2012 12:25
Show Gist options
  • Save fredkingham/3818629 to your computer and use it in GitHub Desktop.
Save fredkingham/3818629 to your computer and use it in GitHub Desktop.
simplest infinite loading
$(window).on('scroll.loader', function() {
if ($(document).height() - 30 <= $(window).height() + $(window).scrollTop()) {
// your go off and get html to append
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment