JSFiddle - React, Tailwind, and code Playground

by Daniel Lamb

HTML

<button id="myElm">Say it</button>

JavaScript

$('#myElm').bind('click', function () {
    alert('Hello World');
});