Image load error

by Abhijeet Deshmukh

HTML

<img src="http://www.gettyimages.in/gi-resources/images/Homepage/Hero/UK/CMS_Creative_164657191_Kingfisher.jpg1" height="300" width="300" style="object-fit:contain;border:2px solid black" />

JavaScript

$('img').load(function () {
    alert('success', this.src);
}).error(function () {
    alert('error', this.src);
});