JSFiddle - React, Tailwind, and code Playground

by TJ VanToll

HTML

<link href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" rel="stylesheet">
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.min.js"></script>

<div id="accordion">
    <h3>One</h3>
    <div>One - Contents</div>
    <h3>Two</h3>
    <div>Two - Contents</div>
    <h3>Three</h3>
    <div>Three - Contents</div>
</div>

<a href="http://jsfiddle.net/tj_vantoll/tRSyR/show">Forward</a>

JavaScript

$( "#accordion" ).accordion();