I am attempting to use Jquery to determine if an image has properly loaded or is broken.
The following works just fine (and returns true or false as of the state of the image) but only seems to work in IE, In firefox, it seems to always return "true" - even if the state is actually imcomplete:
image = $("img#myImage");
alert(image[0].complete);
What is the Firefox equivalent for image.complete in Javascript/Jquery