JSFiddle - React, Tailwind, and code Playground

by bouillard

HTML

<table>
<tr>
    <td>toto</td>
</tr>
</table>

JavaScript

$(document).ready(function () {
$('tr').dblclick(function(){
alert('Row dblclicked');
});
});