IE is not loading all images
- by newbie
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 ...
});
});