HyperTextMarkupLanguage

HTML Advanced Functions


| Home | Agenda | Next |

SELECT - Select List

Appearance: <SELECT> </SELECT>
Attributes: NAME=string, SIZE=n, MULTIPLE, VALUE=string

These tags allow the user to select one or more items from a menu or scrolling list.

There are three basic uses for these tags:

  1. Drop Down Menu
  2. Listbox Menu
  3. Scrolling Listbox
VALUE: sends the identified text to the server instead of the text seen by the user
SIZE: determines the number of rows visible to the user
MULTIPLE: allows the user to make more than one selection
SELECTED: defines a selection(s) to be chosen when the form is first loaded
| Home | Agenda | Next |

T10D031