JSFiddle - React, Tailwind, and code Playground

by poonia

HTML

<html>
  
  <head></head>
  
  <body>
    <img onclick="doSomething()" src="http://upload.wikimedia.org/wikipedia/commons/thumb/0/0c/White_and_yellow_flower.JPG/320px-White_and_yellow_flower.JPG" />
    <img onclick="alert('Hello!')" src="http://upload.wikimedia.org/wikipedia/en/7/70/Example.png" />    
  </body>

</html>

JavaScript

function doSomething() {
  alert('Hello!'); 
}