With the datatables javascript plugin I want to display 10k little images in a table with pagination.
Because I load too much of them, I get errors.
I would like to load those images only when they appear so I found the lazyload plugin.
However, the images don't appear at all at first.
I have to manually enter
$("img.lazy").lazyload();
in the browser console.
Then only it loads the images that are on screen
(i.e. when I scroll down, I see all other images unloaded).
This proves at least that the plugin is somewhat working.
Is there something particular to do with the use of datatables?
Do I have to scriptually trigger lazyload every second?
Thank you !