100% , , - , $("#test").load(... , ias, .
, :
$("#test").load( "page0.html #load_here", function() {
var ias = $.ias({
container: '#load_here',
item: 'p',
pagination: '#nav',
next: '#nav a'
});
});
, $.ias() memoizing , "ias" .
, ias , , . "destroy" $.ias() , . (https://github.com/webcreate/infinite-ajax-scroll/blob/master/src/jquery-ias.js#L553)
, , :
var ias;
function setupIAS() {
ias && $.ias('destroy');
ias = $.ias({
container: '#load_here',
item: 'p',
pagination: '#nav',
next: '#nav a'
});
}
$(document).ready(function() {
setupIAS();
$("#reload").click(function(){
event.preventDefault();
$("#test").load( "page0.html #load_here", function() {
setupIAS();
});
});
});