JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://code.jquery.com/jquery-2.2.1.min.js"></script>
<table id="JtkTable"> <tbody> <tr> <td class="Jtktd1"> <td class="Jtktd2" title="test"> <div class="Jtk_Head">test Name</div> <input type="radio" value="2" name="rad_test"> </td> </tr></tbody></table>

JavaScript

$('#JtkTable tr').click(function() {alert('jetzt klick un tr');$(this).find('td input:radio').prop('checked', true);})
$("#JtkTable").on("click", "tr", function() { alert($( this ).text()); });