HTML option: Main Tips
- HTML
<option>
specifies the possible options in a drop-down menu. <option>
HTML works together with <select> element to create a drop-down menu for users to choose answers.- If the option list contains many suggested answers, it is better to divide them into groups with <optgroup>.
Purpose of option
<option>
HTML sets suggested answers in <select>
element list.
<p>Which pet would you like to keep at home?</p>
<select>
<option value="cat">Cat</option>
<option value="wolf">Wolf</option>
<option value="llama">Llama</option>
</select>
- Easy to use with a learn-by-doing approach
- Offers quality content
- Gamified in-browser coding experience
- The price matches the quality
- Suitable for learners ranging from beginner to advanced
- Free certificates of completion
- Focused on data science skills
- Flexible learning timetable
- Simplistic design (no unnecessary information)
- High-quality courses (even the free ones)
- Variety of features
- Nanodegree programs
- Suitable for enterprises
- Paid Certificates of completion
- A wide range of learning programs
- University-level courses
- Easy to navigate
- Verified certificates
- Free learning track available
- University-level courses
- Suitable for enterprises
- Verified certificates of completion
Attributes for option
selected
Make a specific HTML option selected as soon as the list opens by applying the selected
attribute.
<p>Which pet would you like to keep at home?</p>
<select>
<option value="cat">Cat</option>
<option value="wolf">Wolf</option>
<option value="llama" selected>Llama</option>
</select>
disabled
When the opening HTML <option>
tag contains the disabled
attribute, the option won't be checkable.
<p>Which pet would you like to keep at home?</p>
<select>
<option value="cat" disabled>Cat</option>
<option value="wolf">Wolf</option>
<option value="llama">Llama</option>
</select>
label
HTML option label
defines a shorter name for an option. The final option HTML list contains the shortened version.
<p>Which pet would you like to keep at home?</p>
<select>
<option label="Cat">Cat - the tiger of the house</option>
<option label="Dog">Dog - best friend of the cat</option>
<option label="Llama">Llama - just fabulous</option>
</select>
value
When the opening HTML <option>
tag has the value
attribute, it indicates the answer to be sent to a server (after an option is selected).
<p>Which pet would you like to keep at home?</p>
<select>
<option value="cat">Cat</option>
<option value="wolf">Wolf</option>
<option value="llama">Llama</option>
</select>