JSFiddle - React, Tailwind, and code Playground
by Ben Alman
HTML
<div>click me</div>
JavaScript
$('*').add(window).add(document).bind('click', function( e ) {
console.log(e.type, this.nodeName || this, e.namespace);
});
$('*').add(window).add(document).bind('custom', function( e ) {
console.log(e.type, this.nodeName || this, e.namespace);
});
$('div').trigger('custom');