JSFiddle - React, Tailwind, and code Playground

by sujay

HTML

<div>HI</div>

CSS

div {
    background: red;
    width: 100px;
    min-height: 100px;
    margin: auto;
    position: relative;
    top: 10px;
    color: white;
    font-size: 32px;
}

JavaScript

$('body').on('click', 'div', function(e){
    console.log(e.type,e);
    $(this).append(e.type);
});


var event = jQuery.Event('idle.idleTimer');
event.stopPropagation();
$('div').trigger(event);