jquery-lazyload-any icon indicating copy to clipboard operation
jquery-lazyload-any copied to clipboard

$.lazyload functions doesn't do anything

Open MikePooh opened this issue 2 years ago • 0 comments

Calling of $.lazyload.check() or $.lazyload.setInterval(100000000) doesn't seem to has any effect. Whats the proper way to use that?

I have

$('.lazyload-thumbnail').lazyload({
	load: function(img) {
		console.log("loading")
		img.fadeOut(0, function() {
    img.fadeIn(1000);
  	});
	}
});

If I scroll down I am getting image loaded as expected. If I call $.lazyload.check() nothing happens. Whats wrong?

MikePooh avatar Aug 26 '22 09:08 MikePooh