JSFiddle - React, Tailwind, and code Playground

JavaScript

$(document).ready(function(){
       var html = "<table><tr><th>Testing</th></tr><td>Click Me</td></table>";
    $("table").live("click",function(){
          alert("IT WORKS");
    });
    $("body").html(html);
} );