JSFiddle - React, Tailwind, and code Playground
HTML
<script src="ttps://code.jquery.com/jquery-3.2.1.min.js"></script>
<div id="myElement">
</div>
JavaScript
alert('why does this not work?');
$('#myElement').trigger('cart.updated', 'this is a packet');
$('#myElement').trigger('order.completed', 'this is a packet too');
console.log('line5')
$('#myElement').on('cart.updated order.completed', function (e, data) {
console.log(data);
}