JSFiddle - React, Tailwind, and code Playground

JavaScript

var img = document.createElement('img');

img.src='http://no-image.com/';

img.onload = function(e){
	alert('Success!');
};

img.onerror = function(e) {
	alert('ERROR!');
};

document.body.appendChild(img);