JSFiddle - React, Tailwind, and code Playground

HTML

<div class="limeskin clickable">
  <div class="limebox clickable">
    <div class="limecost clickable">
      <b>Click on any DIV</b>
    </div>
  </div>
</div>

CSS

.limeskin {
    width: 200px;
    height: 200px;
    background-color: gold;
}
.limebox {
    width: 150px;
    height: 150px;
    background-color: green;
}
.limecost {
    width: 100px;
    height: 100px;
    background-color: orange;
}

JavaScript

$('.clickable').click(function(event) {
    var clicked_div = $(this);
    alert(clicked_div.attr('class'));
});