Answers for "non editable text box html"

2

js making input non typeable

//Use readonly

<input id="myInput" readonly>
Posted by: Guest on June-01-2020
2

read only html

<!-- Using readonly attribute is use to prevent changing of input value. -->
Example:
<input type="text" name="username" value="lol" readonly>
Posted by: Guest on August-17-2020
0

non editable text field

<input type="text" id="country" name="country" value="Norway" readonly>
Posted by: Guest on July-27-2021

Browse Popular Code Answers by Language