I use lazyload() on my ecommerce website. lazyload() works great. I use this code to do that:
$(function(){ $(\"img.lazy\").lazyload({ effect : \"fadeIn
I use the code below and it worked:
$(document).on('ajaxStop', function() { $("img.lazy").lazyload({ effect: 'fadeIn' }); });