I am trying to show an image if a call to http://localhost:someportnumber/icon returns a zero size 200 response.
in most browsers, the following (cut down) works: jQuery.$('#myImage').load(function() { jQuery.$(this).show(); });
if the image doesnt load, the img element is never shown, and its all good.
however, safari decides to report these failed image loads as page errors: http://img.skitch.com/20090706-kna755s8fbb1pbd3mf9di9hdkg.jpg
as much as i have tried, i havent found a good way of getting around these errors. any pointers in the right direction would be much appreciated.