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');
2.1m questions
2.1m answers
60 comments
57.0k users