Friday, June 10, 2011
Thursday, June 9, 2011
Problem to uncheck list of checkboxes by jQuery
You cannot
go this way:
$(':checkbox').attr('Checked', false);
Have to go
by
$(':checkbox').each(function
() {
this.checked = false;
});
No problem
to check all of checkboxes by:
$(':checkbox').attr('Checked', true);
Interesting…
Subscribe to:
Posts (Atom)