home ~ projects ~ socials

Disable An HTML Text Input Field

Edits Not Allowed

Disabling an <input type="text" /> can be done by adding a disabled attribute:

HTML

<label 
  for="example">Example Text</label>

<input 
  id="example"
  type="text"
  value="alfa bravo charlie"
  disabled
/>

Output

-- end of line --

References