JSFiddle - React, Tailwind, and code Playground
by eddiemonge
HTML
<div></div>
<p></p>
CSS
div {
width: 44px;
height: 44px;
background: red;
}
JavaScript
$("div").on("click", function(e){
e.preventDefault();
$("p").html( e.metaKey ? "TRUE" : "FALSE" );
});