How can i reset all checkboxes in a document using jquery or javascript?
+5
A:
If you mean how to remove the 'checked' state from all checkboxes:
$('input:checkbox').removeAttr('checked');
Tatu Ulmanen
2010-02-17 10:16:42
Thanks this worked forme have a nice day
streetparade
2010-02-17 10:21:04