JSFiddle - React, Tailwind, and code Playground

by Paul Irish

HTML

<div id="log"></div>

JavaScript

$(document).delegate('*', 'wtf', function(e){
   console.log('wtf triggerd on ',e.currentTarget , e.target.nodeName, e);
});

$('body').trigger('wtf');