JSFiddle - React, Tailwind, and code Playground
by Akram kamal
HTML
<div class="sitesection">
<p class="expand-one"><a href="#">Click Here To Display The Content</a> <img src="images/arrow.png" width="5" height="7" /></p>
<p class="content-one">This is the content that was hidden before, but now is... Well, visible!"</p>
</div>
CSS
p.content-one {
display:none;
}
JavaScript
$('.expand-one').click(function(){
$('.content-one').slideToggle('slow');
});