Home › Forums › Pro Support › "AJAX Pagination" and "Lazy loading for images" of Jetpack › Reply To: "AJAX Pagination" and "Lazy loading for images" of Jetpack
January 9, 2020 at 4:40 pm
#12645
Keymaster
Hi there,
We’ll have to tell Jetpack to load the images once our new posts are loaded. Did some looking around and found a way using javascript:
jQuery( document ).ready( $ ) {
$( 'body' ).on( 'wpsp_items_loaded', function() {
$( document.body ).trigger( 'post-load' );
} );
} );
Let me know if that does it or not 🙂