JSFiddle - React, Tailwind, and code Playground

by RASMITA DASH

HTML

<div id='Mydiv'  style='border:1px solid blue; width:300px; height:100px;'> My div</div>

JavaScript

$('#Mydiv').on({
				click: function(){
					alert(“clicked”);
				},
				mouseenter: function(){
					alert(“mouse enterd”);
				},
                mouseleave: function(){
					alert(“mouse left”);
				}
});