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:
< 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 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
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
12 Aug, 2022
Like Article
Save Article