Open In App

HTML <input> disabled Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

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: 

html




<!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:

 disabledinput 

Supported Browsers: The browser supported by <input> disabled attribute are listed below:

  • Apple Safari 1.0 and above
  • Google Chrome 1.0 and above
  • Edge 12.0 and above
  • Firefox 1.0 and above
  • Opera 12.1 and above
  • Internet Explorer 5.5 and above

Last Updated : 12 Aug, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads