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');
});
});
by bouillard
<table>
<tr>
<td>toto</td>
</tr>
</table>
$(document).ready(function () {
$('tr').dblclick(function(){
alert('Row dblclicked');
});
});