JSFiddle - React, Tailwind, and code Playground
by vcsjones
HTML
<p>
jQuery 1.7.2 Behavior:
</p>
<input type="checkbox" id="thesuckycheckbox" checked />
<div id="thenews"></div>
JavaScript
$(function() {
$('#thenews').text($('#thesuckycheckbox').attr('checked'));
});