banner



How To Create Drop Down List Box In Html


Drop down List Box Dropdown listbox is one of the most flexible object in HTML. It is similar to that of radio button i.e, only one item can be selected from a group of items but the only difference is Dropdown menu occupies less space on the for when compared to Radio button and people can view one item at a time.
By adding attribute multiple user can select multiple options.

HTML form drop down list box to give single or multiple options to user with attributes and examples

Dropdown listbox can be created like this :
              <select name="colours"> <option value='blue'>Blue</option> <option value='green'>Green</option>   </select>            

Attributes of Dropdown List:

Attribute Description
autofocus The element is in focus (by default ) when the page loads.
disabled The element is in disabled state for the user.
Name This attribute specifies the name of the object through which it can be referenced.
size Interger : Used to specify the number of visible items in the list.
Multiple If given yes, then multiple choices can be made.

Attributes of <option>..</option>

Attribute Description
value Used to specify the value to be submitted if the form has been submitted.
selected Default selection of the option

Example:

                              Favourite color:	 <SELECT name="ddl"> <option value='blue'>Blue</option> <option value='green'>Green</option> <option value='red'>Red</option> <option value='yellow'>Yelllow</option> <option value='' selected>Select a Color </option> <option value='white'>White</option> </SELECT>            
Here is the output:

Favourite Color:

In the code see how we have kept value equal to blank for the tag Select a colour. Now let us try one multiple selection dropdown list box.

Managing width of the select box

Drop down List Box If we are changing the elements of the select box dynamically, then the width of the drop down select box will keep changing. It will get stretched or reduce based on the elements of the select box. This will not look nice so to give a fix width we have to use style sheet. By just adding width attribute we can't achieve the result in internet explorer and in other browsers except Netscape. Here is the code to manage the width of a select box.
                              <select name="ddl" width=300 STYLE="width: 350px"> <option value='blue'>Blue</option> <option value='green'>Green</option> <option value='red'>Red</option> <option value='yellow'>Yelllow</option> <option value='' selected>Select a Color </option> <option value='white'>White</option> </select>            
Multiple selection from a dropdown listbox
We can give choice to users to select more than one option by adding the attribute multiple. We can also specify the size to display number of options without expanding the pull down list. Here is the sample of listbox with multiple option.

Press and hold Ctrl Key and select more than one item from the list.

Here is the code of above.

                              <select name="ddl" size=4 multiple> <option value='blue'>Blue</option> <option value='green'>Green</option> <option value='red'>Red</option> <option value='yellow'>Yelllow</option> <option value='' selected>Select a Color </option> <option value='white'>White</option> </select>            
We can group the options under different heads. We can use optgroup to manage such group of options.

OPTGROUP to group the options of Listbox

multiple selection options of list box are handled using PHP

Managing Listbox using JQuery


HTML Form Textarea in form Checkbox in a form

This article is written by plus2net.com team.

How To Create Drop Down List Box In Html

Source: https://www.plus2net.com/html_tutorial/html_frmddl.php

Posted by: parentdights.blogspot.com

0 Response to "How To Create Drop Down List Box In Html"

Post a Comment

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel