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