Обработка несуществующих изображений
// замена изображением по умолчанию
$('img').error(function(){
$(this).attr('src', 'missing.png');
});
// или скрытие изображения
$("img").error(function(){
$(this).hide();
});
// самый рабочий вариант
$(window).load(function() {
$('img').each(function() {
if ( !this.complete || ( !$.browser.msie && ( typeof this.naturalWidth == "undefined" || this.naturalWidth == 0 ) ) ) {
this.src = '/images/no_image.jpg';
}
});
});