jQuery: Exclude Checkbox with a specific value
How to exclude checkboxes like
<input type="checkbox" value="multiselect-all">
from
$(section).find('input, select').each(function(i, field) {});
I tried using
$(section).find('input:not(checkbox), select').each(function(i, field) {});
but it didn't work at the first place. So I could not proceed to filter
checkbox with a value.
No comments:
Post a Comment