JSFiddle - React, Tailwind, and code Playground
HTML
<div id="content">Test</div>
<p class="toggle">Toggle</p>
<div id="othercontent">Other Content below</div>
CSS
p.toggle{
cursor:pointer; font-size:13px; font-weight:bold; color:#5b5b5b;
margin:0px; padding:0px; padding-left:18px;
}
p.add_active{
cursor:pointer; font-size:13px; font-weight:bold; color:#5b5b5b;
margin:0px; padding:0px; padding-left:18px;
}
JavaScript
$("#content").hide();
$(".toggle").click(function(){
$("#content").slideToggle("fast");
$("#othercontent").slideToggle("fast");
return false;
});