I am using the jQuery Lazyload plugin from https://github.com/tuupola/jquery_lazyload like this..
jQuery(window).load(function(){
jQuery("img.lazyload").lazyload({
load : function()
{
console.log("dddd"); // Callback here
}
});
});
But the load function does not appear to be working, I am expecting to get dddd in the console log when a new image is loaded but I get nothing.
Can anyone see what I am doing wrong?