Im new to jQuery and not sure what to change. Basically Im using a script I got of the web to do infinite scrolling for a project. It works great in all desktop browsers, but it only works Id say 2 out of 10 times on the ipad and 1 out of 10 times on the iphone, which to me means not working in iOS at all heh. The script Im using is below, can anyone offer a fix for getting this to work on iDevices? I see there are a bunch of code fixes for the paul irish script, im wondering if I should give that a whirl instead. Opinions are welcome.
here is the script Im using, any help is appreciated:
$(document).ready(function() {
$("#postedComments").append( "<p id='last'></p>" );
//console.log("Document Ready");
doMouseWheel = 1 ;
$(window).scroll(function() {
//console.log("Window Scroll ----");
if (!doMouseWheel) {
return ;
} ;
var distanceTop = $('#last').offset().top - $(window).height();
if ($(window).scrollTop() > distanceTop){
//console.log("Window distanceTop to scrollTop Start");
doMouseWheel = 0 ;
$('div#loadMoreComments').show();
//console.log("Another window to the end !!!! "+$(".postedComment:last").attr('id'));
$.ajax({
dataType : "html" ,
url: "loadmorecomments.php?lastComment="+ $(".postedComment:last").attr('id') ,
success: function(html) {
doMouseWheel = 1 ;
if(html){
$("#postedComments").append(html);
//console.log("Append html--------- " +$(".postedComment:first").attr('id'));
//console.log("Append html--------- " +$(".postedComment:last").attr('id'));
$("#last").remove();
$("#postedComments").append( "<p id='last'></p>" );
$('div#loadMoreComments').hide();
}else{
$('div#loadMoreComments').replaceWith("<center><h1 style='color:red'>End of countries !!!!!!!</h1></center>");
// Added on Ver.0.4
//Disable Ajax when result from PHP-script is empty (no more DB-results )
doMouseWheel = 0 ;
}
}
});
}
});
});