JSFiddle - React, Tailwind, and code Playground
by Vinit Divekar
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<table id="sometable">
<tr>
<td class="fc-widget-content"> //can reach till here
<div style="height: 37px;">
<div class="fc-event-container" style="height: 0px;"></div>
<div class="fc-bgevent-container">
//want to target below element
<div class="fc-bgevent" style="background-color: rgb(0, 0, 0); left: 0px; right: -101px;">Hey There</div>
</div>
</div>
</td>
</tr>
</table>
JavaScript
$(document).on('click', '#sometable .fc-bgevent', function(){
alert($(this).html());
});