Answers for "non editable input field html"

7

html input not editable

<input readonly type="text" name="country" value="Norway" >
Posted by: Guest on March-12-2021
3

read only attribute in html

<!-- Using readonly attribute is use to prevent changing of input value. -->
Example:
<input type="text" name="username" value="ankur" readonly>
Posted by: Guest on June-21-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