Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Multiple Select Help

Status
Not open for further replies.

mk2lee1

MIS
Jul 8, 2003
51
US
Hi, I want to make a drop downlist so that user can select it multiple items within drop down list. How can i make it that way?
this is my current html code
=================
<select name=&quot;section&quot;>
<option value=&quot;none&quot;>-------------</option>
<option value=&quot;form&quot;>Form</option>
<option value=&quot;Breaking&quot;>Breaking</option>
<option value=&quot;Sparring&quot;>Sparring</option>
</select>
====================
 
Hi,

This is what you wanna do:

[tt]<select name=&quot;section&quot; multiple>
<option value=&quot;none&quot;>-------------</option>
<option value=&quot;form&quot;>Form</option>
<option value=&quot;Breaking&quot;>Breaking</option>
<option value=&quot;Sparring&quot;>Sparring</option>
</select>[/tt]

Happy coding §;O)


Jakob
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top