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

c - ALSA programming: how to stop immediately -

c++ - How to add Crypto++ library to Qt project -