$(document).ready(function(){
var inProcess = false;
var limit = 5;
$(window).scroll(function() {
if($(window).scrollTop() + $(window).height() >= $(document).height() && !inProcess) {
$.ajax({
url: 'load_more.php',
type: 'POST',
data: {last_id:last_id, limit:limit},
});
}
});
});
$.ajax( "example.php" )
.done(function(data) {
/* вот тут, что делаем с добром, которое пришло */
})
.fail(function(err) {
alert( "error" );
})
.always(function() {
alert( "complete" );
}
);