JSFiddle - React, Tailwind, and code Playground
by Sahin Deniz
HTML
<table width="70%" border="0" align="center" cellpadding="0" cellspacing="0" id="Kullanicilar">
<thead>
<tr>
<th width="4%" align="center" style="border-top:0px;border-left:0px;"></th>
<th width="18%" align="center">TC NO</th>
<th width="43%" align="center" valign="bottom">AD SOYAD</th>
</tr>
</thead>
<tbody>
<tr id="KullaniciID_3" class="radioSet">
<td width="4%" align="center"><input type="radio" name="id" value="3" id="id_3"></td>
<td width="30%">11111113213</td>
<td>Ogretim Görevlisi</td>
</tr>
</tbody>
</table>
JavaScript
$( document ).ready(function() {
$('tr').click(function(){
alert('asd')
$(this).find('input[type=radio]').prop('checked', true);
})
});