JSFiddle - React, Tailwind, and code Playground

by dhoerster

HTML

<div id='box'>this is stuff in a box</div>

<button id='slideit'>Slide it!</button>

JavaScript

$('#slideit').click(function(e){
    e.preventDefault();
    $('#box').toggle();
});