Help for this page

Select Code to Download


  1. or download this
     @selected_options = $cgi->param( 'select_name' );
    
  2. or download this
    function addOption(object,text,value) {
       var optionName = new Option(text, value)
       object.options[object.length] = optionName;
       object.options[object.length-1].selected = false;
    }