Option (HTML element)
From Wiki @ Karl Jones dot com
Revision as of 19:10, 1 May 2016 by Karl Jones (Talk | contribs) (Created page with "In HTML, the '''X''' element represents an option in a select element or as part of a list of suggestions in a Dl (HTML element)|...")
In HTML, the X element represents an option in a select element or as part of a list of suggestions in a datalist element.
Examples
<select name="select"> <option value="val1">Value 1</option> <option value="val2">Value 2</option> <option value="val3">Value 3</option> </select>