Siempre voy buscando una carga de imágenes asíncrona. He encontrado una que me gusta. Es de esta página: http://stackoverflow.com/questions/4285042/can-jquery-ajax-load-image
var img = $("<img />").attr('src', 'http://somedomain.com/image.jpg') .load(function() { if (!this.complete || typeof this.naturalWidth == "undefined" || this.naturalWidth == 0) { alert('broken image!'); } else { $("#something").append(img); } });