Answers for "disabled without using disabled attribute"

0

disabled attribute is not working in html

try to use disabled="disabled":

<input type="text" id="txtEditAlternate" class="form-control" name="alternate" disabled="disabled" />

I hope it will work for you.
Posted by: Guest on December-05-2020
0

disabled button by attr

/* Selects any disabled <input> */
input:disabled {
  background: #ccc;
}
Posted by: Guest on November-12-2021

Code answers related to "disabled without using disabled attribute"

Browse Popular Code Answers by Language