JSFiddle - React, Tailwind, and code Playground
JavaScript
var img = new Image();
img.onerror = function (ev) {
alert("This does not exist!");
return true;
}
img.onload = function () {
document.body.appendChild(this);
}
img.src = "foo.png"; //Missing image