JSFiddle - React, Tailwind, and code Playground

by Berguiga

HTML

<div id="clickme">
  Click here
</div>
<img id="book" src="book.png" alt="" width="100" height="123"><br/>
    tete te te te
    <br/>
<div id="docParts">
azeaeazeazeazeaze
</div>

JavaScript

$( "#clickme" ).click(function() {
  $( "#docParts" ).toggle( "slow", function() {
    // Animation complete.
  });
});