|
HTML <select> multiple attribute
HTML <select> tag
Example
Allow multiple selection in a drop-down list:
<select multiple="multiple">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select> |
|
Definition and Usage
The multiple attribute specifies that multiple options can be selected at the same time.
Selecting multiple options vary in different operating systems and browsers:
- For windows: Hold down the control (ctrl) button to select multiple options
- For Mac: Hold down the command button to select multiple options
Because of the different ways of doing this, and because you have to inform the user that multiple selection is available, it is more user-friendly to use checkboxes instead.
Tip: The multiple attribute can be used together with the size attribute to define the number of options to be displayed.
Browser Support

The multiple attribute is supported in all major browsers.
Syntax
| <select multiple="value"> |
Attribute Values
| Value |
Description |
| multiple |
Specifies that multiple options can be selected |
HTML <select> tag

Whether you're new to XML or already an advanced user,
the user-friendly views and powerful entry helpers,
wizards, and debuggers in XMLSpy are designed to meet your XML
and Web development needs from start to finish.
- XML editor
- Graphical XML Schema / DTD editors
- XSLT 1.0/2.0 editor, debugger, profiler
- XQuery editor, debugger, profiler
- XBRL validator & taxonomy editor
- Support for Office Open XML (OOXML)
- Graphical WSDL editor & SOAP debugger
- Java, C#, C++ code generation
- And much more!
Download a free trial today!
|
|
|
|