HTML <input> disabled Attribute
The disabled attribute for <input> element in HTML is used to specify that the input field is disabled. A disabled input is un-clickable and unusable. It is a boolean attribute. The disabled <input> elements are not submitted in the form.
Syntax:
<input disabled>
Example:
<!DOCTYPE html> < html > < head > < title >HTML input disabled Attribute</ title > </ head > < body style = "text-align:center" > < h1 style = "color: green;" >GeeksforGeeks</ h1 > < h2 >HTML input disabled Attribute</ h2 > < label >Input: <!--A disabled input--> < input type = "text" name = "value" value = "This input field is disabled" disabled> </ label > </ body > </ html > |
Output:
Supported Browsers: The browser supported by <input> disabled attribute are listed below:
- Apple Safari 1.0
- Google Chrome 1.0
- Firefox 1.0
- Opera 1.0
- Internet Explorer 6.0