JSFiddle - React, Tailwind, and code Playground

by Rahsheen Porter

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<button id="prim">Hide</button>
<div id="body">
  Some stuff that will be hidden
</div>

JavaScript

$(document).ready(function() {
  $("#prim").click(function() {
    $("body").hide();
  });
});