Please can you people guide me how to make ajax call when scroll down
var no=1;
$(window).scroll(function () {
if(no==1)
{
if ($(window).height() + $(window).scrollTop() == $(document).height()) {
no=2;
$.ajax({
type: "POST",
url: "request.php",
data: datas,
cache: false,
success: function(html){
}
});
}
}
});
This does an ajax call when a user reaches at end of page.
You can specify a height at which it occurs.
Here is a separate stack overflow question about firing events on scrolling:
jQuery window scroll event does not fire up
And here is jquery's manual that shows how to use ajax:
http://api.jquery.com/jQuery.ajax/
Combine and enjoy!