JSFiddle - React, Tailwind, and code Playground

HTML

<img style="display:none;"
src="http://example.com/test.png"
/>

<img style="display:none;"
src="http://wichitaatbat.com/wp-content/uploads/Soccer-Ball.png"
/>

JavaScript

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