How to reset all checkboxes using jQuery or pure JS?

If you mean how to remove the ‘checked’ state from all checkboxes:

$('input:checkbox').removeAttr('checked');

Leave a Comment