Answers for "disable html textbox"

1

html disable editing textbox

<!-- 
You can either use the readonly or the disabled attribute.
Note that when disabled, the input's value will not be submitted when
submitting the form.
-->
<input id="price_to" value="price to" readonly="readonly">
<input id="price_to" value="price to" disabled="disabled">
Posted by: Guest on February-02-2021
2

disable input field

<input type="text" id="lname" name="lname" disabled>
Posted by: Guest on January-06-2022

Code answers related to "disable html textbox"

Browse Popular Code Answers by Language