Allibsus    
main page | buy now | interactive tour | demo | support | contact us
 



main page
buy now
tour
demo
support
contact us



Knowledge Base / How do I create a drop down menu?

We receive many e-mails about how to create a drop down menu for a form. Let's create a drop down menu for choosing a gender. Let's name the field 'Gender'.

<select name="Gender" size="1">
<option value="">Select your gender</option>
<option value="Male">Male</option>
<option value="Female">Female</option>
<option value="No answer">No answer</option>
</select>

It is mandatory that you end all <option> with the closing </option>. It is recommended to create an item with value="" and place that as the first item of a drop down menu list when the size="1". We place this HTML in our web page and we get this.