Найдите элемент img , например, с помощью getElementById ().
var imgElement = document.getElementById('theImg');
Тогда
imgElement.addEventListener('error',
function()
{
alert('Error, could not be loaded.');
// ...whatever else you want to happen if not found.
}
, 1);
Это сделает это.