input tag editable if value is set code example
Example 1: js making input non typeable
//Use readonly
<input id="myInput" readonly>
Example 2: 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>