JSFiddle - React, Tailwind, and code Playground

by GopsAB

HTML

<div id="me" class="temp">g</div>

CSS

.temp
{
    border: 1px solid;
    width:200px;
    height: 200px;
}

JavaScript

$(document).ready(
        function(e)
    {
        $('body').click(
            function()
            {
                alert(e.target.id);
            }
            );
    }
    );