JSFiddle - React, Tailwind, and code Playground

by Trisox

HTML

<a id="clickerd" href="#">lol</a>
<br/>
<div id="removeMe">fsdfdsfdsfsd</div>

JavaScript

$("#clickerd").click(function(event){
    event.preventDefault();
   $('#removeMe').fadeOut('slow').remove();
});