Skip to content

Instantly share code, notes, and snippets.

@chrisforrette
Created April 26, 2010 22:14
Show Gist options
  • Save chrisforrette/380015 to your computer and use it in GitHub Desktop.
Save chrisforrette/380015 to your computer and use it in GitHub Desktop.
var p = 0;
function callMeOnScroll() {
$.get(
'/url/to/append/script/?p=' + p,
function(data) {
p++;
$('div#card listing_content').append(data);
}
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment