I want to deselect the checkboxes that are in disabled state using JQuery
I used live type with ‘change’ event in Jquery. The following code deselects all checkboxes. But I need only for disabled checkboxes.
$('.checkboxGroups').removeAttr('checked').trigger('change');
Thanks.
You can use something like
See more about :disabled Selector