JSFiddle - React, Tailwind, and code Playground
by davestein
HTML
<input type="checkbox" id="hai" />
JavaScript
$('#hai').bind( 'click', function() {
alert( 'hai' );
});
by davestein
<input type="checkbox" id="hai" />
$('#hai').bind( 'click', function() {
alert( 'hai' );
});