JSFiddle - React, Tailwind, and code Playground

by wholypantalones

HTML

<img src="https://pbs.twimg.com/profile_images/596630109613740032/S_jtpvR.jpg" 
onLoad="checkState(this, true);" onError="checkState(this, false);">
<img src="https://www.google.de/images/nav_logo195.png" 
onLoad="checkState(this, true);" onError="checkState(this, false);">

JavaScript

function checkState(e, s)
{
    console.log("loaded:");
    console.log(s);
    console.log(e);
}