I am using jquery lazyload on one of my pages.
Following is the issue scenario:
1) All images present in working viewport on window load, perfectly loads the images.
2) Once user scrolls the new images with class lazy gets into viewport but does not load as per its default behavior.
3) If you run lazyload command with say images A,B,C in viewport and D,E,F not in viewport:
$("img.lazy").lazyload();
A,B,C loads but D,E,F does not load.
4) Now bring D,E,F in viewport, no image loaded. But if you resize your browser window it loads the current images in viewport.
So lazyload module is working but its unable to detect unloaded images in viewport on scroll which is desired behavior. I think this has something to do with the dom structure of my page.
Can somebody suggest something based on above use case, as some of you might have faced the similar issue.