JSFiddle - React, Tailwind, and code Playground
by dmethvin
HTML
<div>
Click in this general area...
</div>
JavaScript
// #5662
$( 'body' ).live( 'click', function(){
alert("click");
});
// comment out to see that live worked
$( 'body' ).die();