JSFiddle - React, Tailwind, and code Playground

HTML

<div id="FIrstId">
    <div id="MADONWEBparentDIvId">
        <a id="MadonwebTest" src="http://madonweb.com">click here to go MADONWEB.COM</a>
    </div>
</div>

JavaScript

$("#MadonwebTest").click(function () {
var id = $("#MadonwebTest").closest("div").attr("id");
alert(id);
});