JSFiddle - React, Tailwind, and code Playground

by James Allardice

HTML

<p>If you click on me, I will disappear.</p>

JavaScript

$(document).ready(function(){
  $("p").click(function(){
    $(this).hide();
  });
});