jlittlejohn
5/16/2016 - 3:42 PM

JS: Automatically Fix Broken Images

JS: Automatically Fix Broken Images

$('img').error(function(){
	$(this).attr('src', 'img/broken.png');
});