I use lazyload() on my ecommerce website. lazyload() works great. I use this code to do that:
$(function(){
$(\"img.lazy\").lazyload({
effect : \"fadeIn
I have same problem, when using waypoints infinite scroll with lazy load image. (but not work on ajax content).
and I fixed that issue with this :
$("img.lazy").lazyload({
effect : "fadeIn",
event: "scrollstop",
skip_invisible : true
}).removeClass('lazy');
$(document).bind('DOMNodeInserted', function(e) {
$("img.lazy").lazyload({
effect : "fadeIn",
event: "scrollstop",
skip_invisible : true
}).removeClass('lazy');
});
I bind the lazy load configuration on DOMNodeInserted
event.