JSFiddle - React, Tailwind, and code Playground

by robert_schutt

HTML

<button id="btn">Toggle</button>
<p id="pp">    This is the paragraph to end all paragraphs.  You    should feel <em>lucky</em> to have seen such a paragraph in    your life.  Congratulations!  </p>

CSS

p { width:400px; }

JavaScript

$("#btn").click(function () {
     $("#pp").slideToggle("slow");    
 });