This is a bit different then the usual question about how to gracefully handle broken images in javascript.
I already have an onerror handler on the image that will replace it with a custom "image not found" image.
However, there is a site that, when you request their image, returns a 404 response code, but in the response body actually returns an image with their own custom not found image. Apparently, the img onerror event doesn't trigger in this case because there is still an image despite the error code. (I tested on FireFox, IE8, and Chrome)
Here is a sample of the image in question: http://images.cars.com/preview/DMI/186445/C2121.jpg
Does anyone have any ideas for how to detect this case in javascript and replace their dynamic 404 image with our own? Thanks!
<img onerror="replaceImageUrl(this, 'http://myco.com/noImageAvailable.png', 150, 113)" onload="scaleImage(this, 150 , 113);" src="http://images.cars.com/phototab/DMI/186445/C2121.jpg"/>– Jasper Rosenberg Aug 18 '11 at 15:07