JSFiddle - React, Tailwind, and code Playground

by fparent

HTML

<div></div>

CSS

div {
 width: 200px;
 height:200px;
 background-color: #15e1ff;   
 cursor: pointer;   
}

JavaScript

$( 'div' ).on( 'click', function() {
   
    $( this ).fadeOut( 2000, function() {
        
        $( document ).on( 'click', function() {
           console.log( 'click on the document' ); 
        });
        
    });        
    
});