JSFiddle - React, Tailwind, and code Playground

by Gloak

HTML

<input type='button' id='hideshow' value='hide/show'>
<div id='content'>Hsdfgsdfgsdfg</div>

JavaScript

jQuery(document).ready(function(){
    jQuery('#hideshow').live('click', function(event) {        
         jQuery('#content').toggle('show');
    });
});