Answers for "jquery check if dropdown is disabled"

2

disable option dropdown jquery

//disable by value
$("#ddlList option[value='jquery']").attr("disabled","disabled");

//disable by text
$('#ddlList option:contains("HTML")').attr("disabled","disabled");
Posted by: Guest on January-20-2021
1

jquery option not disabled

const opt = $('#select option:not(:disabled)'); // array with all options not disabled
const first = $($('#select option:not(:disabled)')[0]); // first option not disabled
Posted by: Guest on April-20-2021

Code answers related to "jquery check if dropdown is disabled"

Code answers related to "Javascript"

Browse Popular Code Answers by Language