Answers for "html disabled attribute javascript"

5

remove disabled attribute javascript

document.getElementById('my-input-id').disabled = false;
Posted by: Guest on May-29-2020
1

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 "html disabled attribute javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language