Help for this page

Select Code to Download


  1. or download this
       %labels = ('eenie'=>'your first choice',
                  'meenie'=>'your second choice',
    ...
       print popup_menu('menu_name',
                                ['eenie','meenie','minie'],
              'meenie',\%labels,\%attributes);
    
  2. or download this
    <select name="menu_name" tabindex="1">
    <option class="class of first choice" value="eenie">your first choice<
    +/option>
    <option selected="selected" value="meenie">your second choice</option>
    <option value="minie">your third choice</option>
    </select>