JSFiddle - React, Tailwind, and code Playground
HTML
<p>If you click on me, I will disappear.</p>
JavaScript
$(document).ready(function(){
$("p").click(function(){
$(this).hide();
});
});
<p>If you click on me, I will disappear.</p>
$(document).ready(function(){
$("p").click(function(){
$(this).hide();
});
});