JSFiddle - React, Tailwind, and code Playground
by wirey00
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').on({
load: function() {
console.log('success',this.src);
},
error: function() {
console.log('error',this.src);
}
})