How to reset all checkboxes using jQuery or pure JS? January 10, 2023 by Tarik If you mean how to remove the ‘checked’ state from all checkboxes: $('input:checkbox').removeAttr('checked');