JSFiddle - React, Tailwind, and code Playground

by adamzr

HTML

<div id="me">Hover over me to display something else</div>
<div id="else">Something else</div>

CSS

#else{
   display: none;
}

JavaScript

$("#me").hover(function(){
   $("#else").show();
},function(){
   $("#else").hide();
});