Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can i reset all checkboxes in a document using jquery or javascript?

share|improve this question

5 Answers

up vote 28 down vote accepted

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

$('input:checkbox').removeAttr('checked');
share|improve this answer
Thanks this worked forme have a nice day – streetparade Feb 17 '10 at 10:21
This script is toggling the state of check boxes. Not sure if I am doing something wrong – Sundeep May 17 '11 at 14:33
Note that in jQuery v1.6 and higher, you should be using .prop('checked', false) instead for greater cross-browser compatibility - see api.jquery.com/prop – Blakomen Apr 24 at 6:34

The above answer did not work for me -

The following worked

$('input[type=checkbox]').each(function() 
{ 
        this.checked = false; 
}); 

This makes sure all the checkboxes are unchecked.

share|improve this answer

If you want to use form's reset feature, you'd better to use this:

$('input[type=checkbox]').attr('checked',true); 

OR

$('input[type=checkbox]').attr('checked',false);

Looks like removeAttr() can not be reset by form.reset().

share|improve this answer
 $(":checkbox:checked").each(function () {

 this.click(); 
});

to unchecked checked box, turn your logic around to do opposite

share|improve this answer

This is a known bug with JQuery, the reset (uncheck) works but the UI element doesnt update.

With my quiz i go back to the starting menu (first page tag in the html) so at the end of the quiz the button simply does the following:

window.location.href = "index.html";

this is a complete page refresh so might not work for you but it will reset the checkboxes and other form elements

Link to the known bug on Jquery website

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.