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

java - Intellij Synchronizing output directories .. -

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