JSFiddle - React, Tailwind, and code Playground
HTML
<table>
<th>ID</th><th>Name</th><th>Age</th>
<tr><td>25</td><td>Jack</td><td>15</td></tr>
<tr><td>20</td><td>Jill</td><td>16</td></tr>
</table>
JavaScript
$('table tr).click(function() {
var mvalue = $(this).text();
alert(mvalue);
console.log(mvalue);
});