JSFiddle - React, Tailwind, and code Playground

by nosfan1019

HTML

<table id="myTable" border="1" class="edit">
    <tr id="row1">
        <td>
            click here                
        </td>
    </tr>
</table>

JavaScript

function foo(x) {
    $(x).click(function(){
        alert('I couldnt debug the original one ... Decided to build it from scratch');
    });
}

foo('#row1')