JSFiddle - React, Tailwind, and code Playground

by ChrisStanyon

HTML

<div class="title">This is a title</div>
<div class="content">This is the content</div>

<div class="title">This is a title</div>
<div class="content">This is the content</div>

<div class="title">This is a title</div>
<div class="content">This is the content</div>

CSS

.title { background-color: green; padding: 5px; color: white; font-weight:bold; cursor: pointer;  }
.content {border: 1px solid green; margin-bottom: 20px; padding:5px; }

JavaScript

$('.title').click(function() {
     $(this).next('.content').slideToggle();
})