JSFiddle - React, Tailwind, and code Playground

by bobbyfrancisjoseph

HTML

<div id = "test">
    
    <img src = "http://team.deskbuzz.com/cochin/bobby/editor/plus_50x50.jpg"/>

</div>

CSS

#test{
    
 margin:50px;
 background-color:#DDD;
  text-align:center;  
}

JavaScript

$("#test").click(function() {
  alert("Handler for .click() called.");
});