JSFiddle - React, Tailwind, and code Playground

by shriek

HTML

<div class="chup" onClick="popup(event)">Hello</div>
<div class="inter">Sheit</div>

CSS

.inter{
    display:none;
}

JavaScript

function popup(event){
    $(event.currentTarget).siblings(".inter").show();
}