With the introduction of the prop method, now I need to know the accepted way of unchecking a checkbox. Is it:
$('input').filter(':checkbox').removeAttr('checked');
or
$('input').filter(':checkbox').prop('checked',false);
|
With the introduction of the prop method, now I need to know the accepted way of unchecking a checkbox. Is it:
or
|
|||||
|
|
For attributes which have underlying boolean properties (of which So, either will work... but the second example you gave (using |
|||||||
|