JSFiddle - React, Tailwind, and code Playground
by RASMITA DASH
HTML
<div id='divOuter' style='border:1px solid red; width:500px; height:300px; text-align:center;'>
divOuter
<div id='divMiddle' style='border:1px solid green; width:400px; height:200px;'>
divMiddle
<div id='divInner' style='border:1px solid blue; width:300px; height:100px;'> divInner</div>
</div>
</div>
JavaScript
$('div').click(function(){
alert($(this).attr('id'));
});