JSFiddle - React, Tailwind, and code Playground
HTML
<div id="test">
<input type="checkbox" value="">
<input type="checkbox" value="abc">
</div>
JavaScript
$('#test input[type=checkbox][value!=]').live ('change', function() {
console.log ('change live');
});
$('#test input[type=checkbox][value!=]').live ('click', function() {
console.log ('click live');
});
$('#test input[type=checkbox][value!=]').bind ('change', function() {
console.log ('change bind');
});
$('#test input[type=checkbox][value!=]').bind ('click', function() {
console.log ('click bind');
});