up vote 10 down vote favorite
9
share [g+] share [fb]

I'm using JavaScript with the jQuery library to manipulate image thumbnails contained in a unordered list. When the image is loaded it does one thing, when an error occurs it does something else. I'm using jQuery load() and error() methods as events. After these events I check the image DOM element for the .complete to make sure the image wasn't already loaded before jQuery could register the events.

It works correctly except when an error occurs before jQuery can register the events. The only solution I can think of is to use the img onerror attribute to store a "flag" somewhere globally (or on the node it's self) that says it failed so jQuery can check that "store/node" when checking .complete.

Anyone have a better solution?

Edit: Bolded main points and added extra detail below: I'm checking if an image is complete (aka loaded) AFTER I add a load and error event on the image. That way, if the image was loaded before the events were registered, I will still know. If the image isn't loaded after the events then the events will take care of it when it does. The problem with this is, I can easily check if an image is loaded already, but I can't tell if an error occurred instead.

link|improve this question

When do you register the jQuery events? Maybe some codes will help. :) – o.k.w Dec 30 '09 at 1:02
Theres a lot of code, what I said above is just a very simple version of what I'm doing. I call the events after the DOM is loaded a method is called to add events to the thumbnails. – William Dec 30 '09 at 1:06
feedback

3 Answers

up vote 13 down vote accepted

Another option is to trigger the onload and/or onerror events by creating an in memory image element and setting its src attribute to the original src attribute of the original image. Here's an example of what I mean:

$("<img/>")
    .attr("src", $(originalImage).attr("src"))
    .load(function() { console.log("image loaded correctly"); })
    .error(function() { console.log("error loading image"); })
;

Hope this helps!

link|improve this answer
Hmm that seems to work, and after a few tests it doesn't seem to hurt the loading of the image either. Thanks! – William Dec 30 '09 at 2:10
1  
Doesn't seem to be working as well as I hoped. In Google Chrome it seems to be having issues when the image is already in cache. It doesn't trigger the load() method. :( – William Dec 30 '09 at 3:05
Ugg, you're right. Chrome is definitely the most annoying browser to develop for. On the bright, I think I may have found a work around: set the image source to "" then back to the original source. I'll update my answer. – Xavi Dec 30 '09 at 3:25
Looks like we were both thinking the same thing. It seems to work so far. I'll write back if I find another bug but so far it's working good. :) – William Dec 30 '09 at 3:28
Doesn't play well with IE6. It likes to cause an error event when changing the src. Also, in IE6 when you change the src it creates a new HTTP request. :( – William Dec 31 '09 at 21:23
show 1 more comment
feedback

Check the complete and naturalWidth properties, in that order.

http://www.sajithmr.me/javascript-check-an-image-is-loaded-or-not/

function IsImageOk(img) {
    // During the onload event, IE correctly identifies any images that
    // weren’t downloaded as not complete. Others should too. Gecko-based
    // browsers act like NS4 in that they report this incorrectly.
    if (!img.complete) {
        return false;
    }

    // However, they do have two very useful properties: naturalWidth and
    // naturalHeight. These give the true size of the image. If it failed
    // to load, either of these should be zero.

    if (typeof img.naturalWidth != "undefined" && img.naturalWidth == 0) {
        return false;
    }

    // No other way of checking: assume it’s ok.
    return true;
}
link|improve this answer
Interesting, I was looking at that post earlier and I didn't realize that they were doing ! complete for IE as naturalWidth is not defined in IE. Going to check it now. – William Dec 30 '09 at 1:07
I think I should have explained better in my main question. I'm calling this after I add the events for load,error so that if it already had an error I will know. This method returns false even if a method is still "loading" and it has 0 errors. I need something to check if it has had an error, if it's still loading / complete then it should return true. Thanks for the answer though – William Dec 30 '09 at 1:30
You should edit your question. – SLaks Dec 30 '09 at 1:42
Updated, let me know if you want anymore details. Thanks for the help – William Dec 30 '09 at 1:51
1  
You can just check img.naturalWidth === 0, no need to test that the type is not undefined. – nornagon May 31 '11 at 8:38
feedback

As I understand the .complete property is non-standard. It may not be universal... I notice it seem to work differently in Firefox verses IE. I am loading a number of images in javascript then checking if complete. In Firefox, this seems to work great. In IE, it doesn't because the images appear to be loading on another thread. It works only if I put a delay between my assignment to image.src and when I check the image.complete property.

Using image.onload and image.onerror isn't working for me, either, because I need to pass a parameter to know which image I am talking about when the function is called. Any way of doing that seems to fail because it actually seems to pass the same function, not different instances of the same function. So the value I pass into it to identify the image always ends up being the last value in the loop. I cannot think of any way around this problem.

On Safari and Chrome, I am seeing the image.complete true and the naturalWidth set even when the error console shows a 404 for that image... and I intentionally removed that image to test this. But the above works well for Firefox and IE.

link|improve this answer
Hmm, that's interesting. Would mind posting a code example so I want try a couple of things out? – Xavi Dec 24 '11 at 11:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.