views:

429

answers:

1

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
Thanks this worked forme have a nice day
streetparade