REPLACE BROKEN IMAGES WITH A DEFAULT IMAGE

JavaScript
$('img').on('error', function (){
	$(this).attr('src', '/path/to/image/default.png');
});

/*// OR hide
---------------------------*/
$('img').on('error', function(){
	$(this).hide();
});
Source

Also in JavaScript: