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

Popular posts from this blog

git - Initial Commit: "fatal: could not create leading directories of ..." -

parcelable - Unmarshalling unknown type code exception while reading parcel values in Android 4.4+ -