JSFiddle - React, Tailwind, and code Playground
HTML
<script>
function modalpopup(id)
{
alert(id);
var searchid = id;
var element = $("#"+searchid );
element.dialog({
height: 340,
width: 500,
modal: true
});
}
</script>
<a href="#" id="_ctl0_MainContentPlaceHolder_DataGrid1__ctl2_HyperLinkInfo" onclick="modalpopup('_ctl0_MainContentPlaceHolder_DataGrid1__ctl2_details10');">
TEXT TRY</a>
<div id="_ctl0_MainContentPlaceHolder_DataGrid1__ctl2_details10" title="Dialog Title"
style="display: none;">
<center>
<table class="table_class" cellspacing="1" cellpadding="2" rules="all" border="1"
id="_ctl0_MainContentPlaceHolder" style="border-style: None; height: 24px; width: 800px;
font-size: 16px;">
<tr class="table_header_class" style="color: DarkGray; font-weight: bold; font-size: 16px;
white-space: nowrap">
<td style="white-space: nowrap">
customer details </td>
</tr>
</table>
</center>
</div>