JSFiddle - React, Tailwind, and code Playground
HTML
<div class="lightbox">
<a id="test" href="#">link</a>
</div>
CSS
.live-feed-container img {
width: 25px;
}
#live-feed-wrapper div:first-child {
border: 2px solid black;
}
JavaScript
jQuery(document).ready(function () {
jQuery(".lightbox a").click(functionName);
});
function functionName() {
alert(this.id);
}