If you are referring to the HTTP response I don´t think you will be able to get that through Javascript. Explain what you are trying to achieve and there might be other solutions that suits your needs.
I created a small demo using the load and error events.
Javascript
$('img').load(function(e) {
// Image loaded
console.log(e.type, e);
})
.error(function(e) {
// Failed to load image
console.log(e.type, e);
$(this).addClass('error');
// NOTE: You could also change the src attribute.
});
CSS
img {
width: 200px;
height: 200px;
margin: 10px;
background: url('http://placekitten.com/g/200/200') no-repeat;
}
.error { border: 2px dashed red; }
HTML
<img id="img1" src="http://placekitten.com/200/200" />
<img id="img2" src="http://placekitten.com/no/such/file" />