How can I reset all checkboxes in a document using jQuery or pure JS?
If you mean how to remove the 'checked' state from all checkboxes:
$('input:checkbox').removeAttr('checked');
1.4m articles
1.4m replys
5 comments
57.0k users