Chrome Hide Broken Image Icon code example
Example: HIDE BROKEN IMAGES
$('img').on('error', function(){
$(this).hide();
});
/*// OR replace
---------------------------*/
$('img').on('error', function (){
$(this).attr('src', '/path/to/image/default.png');
});