NYColt
01-30-2004, 03:35 PM
Hi
I need to launch a Pop Up Menu from a drop down List:
<form>
<select name="liste1" size=1>
<option selected value="">-------Select a Region--------
<option value="http://mysite.com/test">home
</select>
<input type="button" VALUE="OK" onClick="if (form.liste1.selectedIndex != 0) location = form.liste1.options[form.liste1.selectedIndex].value; else alert('Please choose from menu.')">
</form>
The drop down list does not need to be the one ablove but I need code that when I select option value it lauches a pop up of the destination page.
Thanks for any help!
NYColt
I need to launch a Pop Up Menu from a drop down List:
<form>
<select name="liste1" size=1>
<option selected value="">-------Select a Region--------
<option value="http://mysite.com/test">home
</select>
<input type="button" VALUE="OK" onClick="if (form.liste1.selectedIndex != 0) location = form.liste1.options[form.liste1.selectedIndex].value; else alert('Please choose from menu.')">
</form>
The drop down list does not need to be the one ablove but I need code that when I select option value it lauches a pop up of the destination page.
Thanks for any help!
NYColt