Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 ; 
}
}
});
}
});
});
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.