denenmedi <img id="currentPhoto" src="SomeImage.jpg" onerror="this.src='Default.jpg'" width="100" height="120">
http://stackoverflow.com/questions/7995080/html-if-image-is-not-found
ya da
// Replace source
$('img').error(function(){
$(this).attr('src', 'missing.png');
});
// Or, hide them
$("img").error(function(){
$(this).hide();
});http://css-tricks.com/snippets/jquery/better-broken-image-handling/