JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
  
<button>Göster: event.namespace</button>
<p></p>

<script>
$("p").bind("test.ae", function(event) {
  alert( event.namespace );
});
$("button").click("test.ae");
});  
</script>

</body>
</html>