Answers for "html disabled field not submitted"

1

form all input disabled

$("#myform :input").prop("disabled", true);
 $('form :input').attr('disabled', true);
Posted by: Guest on May-14-2022
0

how to fix input field and disabled

<input type="text" readonly="readonly" />
Posted by: Guest on February-07-2020
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

Browse Popular Code Answers by Language