JSFiddle - React, Tailwind, and code Playground

by hamix

HTML

<h3><img src="toggle.png" class ="expander" alt="Expand"/> 
</h3>

<div style="display:none" id="TableData">The Core Knowledge Sequence UK is a guideline of the fundamental skills and content to cover in English, maths, history and geography, science, music and visual arts.</div>
<p class="traversing"></p>

JavaScript

$(function () {
	    $('.expander').live('click', function () {
	        $('#TableData').slideToggle();
	    });
	});