jquery ライブラリを v1.3.2 から 1.7.2 に更新したところです。これが唯一のスクリプト (endless_page.js) であり、修正する必要があるのはこれだけです。これのシンスタックスは減価償却されたか何かだと思いますが、どんな助けでも大歓迎です!!!
var currentPage = 1;
var path = window.location.pathname;
var ajax_path;
function checkScroll() {
if (nearBottomOfPage()) {
call_ajax();
} else {
setTimeout("checkScroll()", 100);
}
}
function call_ajax() {
$("#loading-or-more").fadeOut(100, function() {
$(this).replaceWith('<p class="headline" id="loading-or-more" style="display:none;text-align:center;margin-left:20px;"><img src="../../images/newlajaxoader.gif" style="float:left;margin-top:-10px;" > 10 more items on the way</p>');
$("#loading-or-more").fadeIn(10);
});
currentPage ++;
ajax_path = full_path(currentPage);
$.ajax({
url: ajax_path ,
success: function(data) {
if (data=="false") {
$("#loading-or-more").replaceWith('<p class="headline" id="end-of-scroll" style="display:none;text-align:center;"> <a href="#" class="submit gradientBGRed morecategories"> Back to top ↑ </a> </p>');
$("#end-of-scroll").fadeIn(10);
}
else {
$(".mb-lot-items").append(data);
// $(".ajax-results-list").slideDown('slow');
checkScroll();
$("#loading-or-more").replaceWith('<a id="loading-or-more" class="headline gradientBGRed morecategories" href="#items-ajax-mobile"><span>More items</span></a>'); }
}
});
}
function nearBottomOfPage() {
return scrollDistanceFromBottom() < 400;
}
function scrollDistanceFromBottom(argument) {
return $(document).height() - ($(window).height() + $(window).scrollTop());
}
function full_path(currentPage) {
return (path+"?page=" + currentPage+"&format=js") ;
}
$(document).ready(function() {
// checks if "MORE" exists, if so calls checkscroll
if ($("#loading-or-more").length) { checkScroll(); }
});