jQuery('#ajax-load-more').on( 'DOMNodeInserted', function() {
var img = 1;
jQuery('#ajax-load-more .wp-block-image').each(function(){
if(img == 5) {
jQuery(this).addClass('fiveIMG');
//jQuery(this).after('<div>fiveIMG</div>');
img = 0;
}
img++;
});
});
jQuery('#ajax-load-more').on( 'DOMNodeInserted', function() {
var img = 1;
jQuery('#ajax-load-more .wp-block-image').each(function(){
if(img == 5) {
jQuery(this).addClass('fiveIMG');
img = 0;
}
img++;
});
});
jQuery(document).scroll(function() {
jQuery('.fiveIMG').each(function() {
if(jQuery(this).hasClass('add')) {
} else {
jQuery(this).addClass('add');
jQuery(this).after('<div>test</div>');
}
});
});