JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id='toggle'>this clicked
<span id='show'><p>Show this</p></span>
</div>
<div id='toggle'>2 nd button
<span id='show'><p>fhslkjklsfjl</p></span>
</div>
JavaScript
$("div#toggle").click(function(e) {
if (e.target !== this)
return;
$(this).find("#show").toggle();
});