JSFiddle - React, Tailwind, and code Playground

jQuery Test

by Dumine Stefan Daniel

HTML

<p>If you click on me, I will disappear.</p>
<p>Click me away!</p>
<p>Click me too!</p>

JavaScript

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