gingerGamgee
01-06-2004, 11:12 PM
This is my first post!
I modified the quadrouple combobox in one of the previous threads, but I would like a window.alert to pop up and show me my selections at the end. I can't figure out which var holds the value of the combobox (if any). example:
<select name="example" size="1" onChange="redirect(this.options.selectedIndex)">
<option selected>---Select Base Commodity-------------</option>
<option value="S">Steel</option>
<option value="P">Parishable</option>
<option value="G">Glass</option> etc.....
<select name="example1" size="1" onChange="redirect1(this.options.selectedIndex)">
<option selected>---Select Group-------------</option>
<option value="F">Flat</option>
<option value="B">Bar</option>
<option value="T">Tube</option>etc......
If I select "STEEL" from the first combo box, I want the window.alert to read "T", if "Tube" is my second selection, I want the window.alert to read "S T". Get it? Thanks for your help!!
I modified the quadrouple combobox in one of the previous threads, but I would like a window.alert to pop up and show me my selections at the end. I can't figure out which var holds the value of the combobox (if any). example:
<select name="example" size="1" onChange="redirect(this.options.selectedIndex)">
<option selected>---Select Base Commodity-------------</option>
<option value="S">Steel</option>
<option value="P">Parishable</option>
<option value="G">Glass</option> etc.....
<select name="example1" size="1" onChange="redirect1(this.options.selectedIndex)">
<option selected>---Select Group-------------</option>
<option value="F">Flat</option>
<option value="B">Bar</option>
<option value="T">Tube</option>etc......
If I select "STEEL" from the first combo box, I want the window.alert to read "T", if "Tube" is my second selection, I want the window.alert to read "S T". Get it? Thanks for your help!!