On Sep 6, 2007, at 12:54 AM, Andy Matthews wrote:

Just FYI, in IE7 none of the images ever loaded, no matter how far I
scrolled down. It wasn't until I clicked on each image that they loaded
correctly.

I forgot to remove some code from demo page. I was testing another new feature. You can define custom event which causes images to load. For example:

$("img").lazyload({
    placeholder : "img/grey.gif",
    event : "click"
});

Images wont load before you click them. Or

$("img").lazyload({
    placeholder : "img/grey.gif",
    event : "mouseover"
});

Images wont load before you mouseover them.

--
Mika Tuupola
http://www.appelsiini.net/



Reply via email to