JSFiddle - React, Tailwind, and code Playground

by Rejith R Krishnan

HTML

<div class="mydiv">
    <p>Hello from inside a mydiv</p>
</div>
<div class="mydiv">
    <p>Hello from inside some other mydiv</p>
</div>

JavaScript

$(document).on('click', '.mydiv', function(){
        alert($(this).text());
    });