Open In App
Related Articles

HTML <option> disabled Attribute

Improve Article
Improve
Save Article
Save
Like Article
Like

The disabled attribute for <option> element in HTML is used to specify that the option value is disabled. A disabled option is un-clickable and unusable. It is a boolean attribute. 

Syntax:

<option disabled>option values...</option>

Example: 

html




<!DOCTYPE html>
<html>
    <head>
        <title>HTML option disabled Attribute</title>
    </head>
 
    <body style = "text-align:center">   
        <h1 style = "color: green;">GeeksforGeeks</h1>
        <h2>HTML option disabled Attribute</h2>
 
        <p>Bubble sort is disabled.</p>
        <select>
            <!--A disabled option-->
            <option value="bubble" disabled>Bubble sort</option>
            <option value="insertion">Insertion sort</option>
            <option value="merge">Merge sort</option>
        </select><br>
    </body>
</html>


Output:

 disabledoption 

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

  • Apple Safari
  • Google Chrome 1.0
  • Edge 12
  • Firefox 1.0
  • Opera
  • Internet Explorer 
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 : 28 Jul, 2022
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials