Answers for "jquery add disabled attribute to select option"

3

jquery remove disabled property from button

$('#edit').click(function(){ // click to
            $('.inputDisabled').attr('disabled',false); // removing disabled in this class
 });
Posted by: Guest on September-14-2020
1

if select option disabled jquerz

if($('#dropdownID option:selected').prop('disabled') == true){
// Put your own condition
}
Posted by: Guest on November-11-2021

Code answers related to "jquery add disabled attribute to select option"

Code answers related to "Javascript"

Browse Popular Code Answers by Language