JSFiddle - React, Tailwind, and code Playground
HTML
<div id="Parent1">
<div>
<div>
<div id="mychildDiv"></div>
</div>
</div>
</div>
JavaScript
alert($('#mychildDiv').parents('div').last().attr('id'));
<div id="Parent1">
<div>
<div>
<div id="mychildDiv"></div>
</div>
</div>
</div>
alert($('#mychildDiv').parents('div').last().attr('id'));