Skip to content

Instantly share code, notes, and snippets.

@mvrilo
Created July 29, 2011 19:09
Show Gist options
  • Select an option

  • Save mvrilo/1114504 to your computer and use it in GitHub Desktop.

Select an option

Save mvrilo/1114504 to your computer and use it in GitHub Desktop.
infinite scroll
$(window).scroll(function(e) {
if ($(window).scrollTop() === $(document).height() - $(window).height()) {
// ajax!
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment