34,333
edits
Changes
→HTML Drop-down / Select Object
[[Image:Javascript selection list.jpg]]
The optional ''multiple'' attribute may be added to the <select> tag to enable multiple selection of items from the list.When the Select element is used in multiple selection mode it is important to place [] after the elemtn name so that the PHP script on the receiving end of the submission is able to access the multiple selections via an array:
<pre>
<select name="carBrands[]" size=5 multiple>
</pre>
This is covered in detail in [[]].
== HTML Password Object ==