JSFiddle - React, Tailwind, and code Playground

by Paulo Silva

HTML

<div id="divDb" class="teste" style="background-color: green; color: white; font-size: 10px;">
Duplo clique aqui e vai funcionar!
    <table data-url="data1.json" data-height="500" data-sort-name="name" data-sort-order="desc" class="table table-striped table-bordered">
            <thead>
                <tr>
                    <th data-field="id" data-align="center" data-sortable="true">Nível Acesso</th>
                    <th data-field="name" data-align="center" data-sortable="true">Nome</th>
                    <th data-field="price" data-align="center" data-sortable="true">Usuário</th>
                </tr>
            </thead>

            <tbody>
                <tr>
                    <td class="t">Administração</td>
                    <td class="t">Paulo Correa da Silva</td>
                    <td class="t">pnet</td>
                </tr>
            </tbody>
        </table>
</div>

JavaScript

$(document).ready(function () {
    $(".t").dblclick(function () {
         alert("Alô Paulão, Funcionou!");        
    });
});