I use lazyload() on my ecommerce website. lazyload() works great. I use this code to do that:
$(function(){ $(\"img.lazy\").lazyload({ effect : \"fadeIn
$(document).ajaxStop(function() {$('.loading').removeClass('in'); $("img.lazy").lazyload({ effect: "fadeIn", container: $("#scrollable"), threshold: 100, }) });
works for ajax images. but however, not showing the first image by default. the update is not triggered.