JSFiddle - React, Tailwind, and code Playground
by justinwyllie
HTML
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
JavaScript
$(function() {
$('document').bind('test', function(e, data)
{
console.log("e!", e);
console.log("data!", data);
}
)
$('document').trigger("test", 'abc');
}
);