IE is not loading all images
Posted
by newbie
on Stack Overflow
See other posts from Stack Overflow
or by newbie
Published on 2010-03-31T06:38:19Z
Indexed on
2010/03/31
6:43 UTC
Read the original article
Hit count: 254
I have jQuery code that loads images with jQuery load method. It works perfectly in all other browsers, except in IE. I have about 10 images, but IE only loads few of those images and then stops loading. What could be causing this?
$(".image-container").each(function() {
... some code here ...
var img = $("img", this);
$(img).load(function () {
... some code here ...
});
});
© Stack Overflow or respective owner