How can i reset all checkboxes in a document using jquery or javascript?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
If you mean how to remove the 'checked' state from all checkboxes:
|
|||||||
|
|
The above answer did not work for me - The following worked
This makes sure all the checkboxes are unchecked. |
|||
|
|
|
If you want to use form's reset feature, you'd better to use this:
OR
Looks like |
||||
|
|
to unchecked checked box, turn your logic around to do opposite |
|||
|
|
|
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 |
|||
|
|