JSFiddle - React, Tailwind, and code Playground

HTML

<div></div>

CSS

div, p {
    width: 200px;
    height: 200px;
    background-color: red;
}

JavaScript

/*$('div').on('click', function() {
	console.log(this, $(this));
});*/

/*$(document).on( 'click', $('div'), function(){
	console.log(this, $(this));
} );*/

/*$(document).on( 'click', $('div'), function(){
	console.log(jQuery("div", this));
    console.log(jQuery(this).find("div"))
} );*/