JSFiddle - React, Tailwind, and code Playground
by itzmeamar
HTML
<div class="clickMe">Click Me Please</div>
<div class="showMe">
This will show only after a click of .clickMe elements
</div>
CSS
.showMe {display:none;
width:200px;
height:200px;
background-color:#000;
color:#fff;}
JavaScript
$(document).ready(function(){
$(".clickMe").click(function () {
$(".showMe").show();
});
});