List option  - <OPTION>

Previous- OPTGROUP - Option group  |  Next-P - Paragraph

Description
An element of a list used in conjunction with the Select tag, normally used to provide values in a drop down list within a form. When the form is submitted, the selected option's value will be submitted with the name of the select control. If the value attribute is not used then the option wil have the value of the fext which follows it.
Attributes
NameValuesDescription
classclassnameClass of the element which is used to associate the element with a style sheet.
dirltr|rtlThe direction in which text flows when surrounded by text which flows in different directions.
disabled
event_namescript_codeDefines script to run on event such as OnMouseOver
idstringA unique name to identify an element.
labelstring
langlanguage_typeThe ISO description for the language of the element.
languagejavascript|jscript|vbscript|vbs
plain
selected
stylestringSpecifies style information for the element.
titlestringTitle for element which is often displayed as a tool-tip when the cursor hovers over the element.
valuestringValue of the current item. Deprecated under HTML 4.0

Example
<select name="mynumbers">
<option>one
<option>two
<option>three
</select>
or
<select name="mynumbers">
<option value=1>one
<option value=2>two
<option value=3>three
</select>
Will be displayed as :

or

Compatability
HTMLNETSCAPEINTERNET EXPLORER
4.1N2N3N4N6IE3IE4IE5IE6
YES YES YES YES YES YES YES YES YES

Previous- OPTGROUP - Option group  |  Next-P - Paragraph