Answers for "how to disable selection on dropdown menu js"

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
2

howt to disable a select tag using js

document.getElementById("one").onchange = function () {
  document.getElementById("two").setAttribute("disabled", "disabled");
  if (this.value == 'car')
    document.getElementById("two").removeAttribute("disabled");
};
Posted by: Guest on November-27-2020

Code answers related to "how to disable selection on dropdown menu js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language