jquery - Can not disable checkbox by value -
here code not working.checkboxes created dynamically.i want disable checkboxes values "undefined"
var val = "undefined"; $('#dynamiccapability').on('input:checkbox[value="' + val + '"]').attr('disabled', true);
it says undefined when value empty,try this:
$('input:checkbox[value=""]').prop('disabled', true);
Comments
Post a Comment