JSFiddle - React, Tailwind, and code Playground
by hescano
HTML
<div class='myCheckbox'>
<input type='checkbox' checked />
<input type='checkbox' />
<input type='checkbox' />
<input type='checkbox' />
</div>
JavaScript
$('.myCheckbox input[type="checkbox"]').each(function() { this.checked = false });