Answers for "jquery Disable select option if already selected"

3

jquery disable select

$('#pizza_kind').prop('disabled', false);
Posted by: Guest on May-29-2020
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

Code answers related to "jquery Disable select option if already selected"

Code answers related to "Javascript"

Browse Popular Code Answers by Language