frames + drop-down menu

liunx

Guest
hi all,<br />
<br />
I am trying to use drop-down menus in the top frame of my two framed page. I would like to target the bottom frame to be the frame the link opens to when chosen from the drop-down menu. I can't seem to use the 'target' tag effectively to accomplish this.<br />
<br />
Below is a sample piece of code:<br />
<br />
<td width="34%"><br />
<form><br />
<select onChange="location=options[selectedIndex].value;"><br />
<option value="http://WWW.TEST.COM">Misc.</option><br />
<option value="http://WWW.TEST.COM">Hiking in the Shenadoahs 2001</option><br />
<option value="http://WWW.TEWST.COM">Test</option><br />
</select><br />
</form><br />
<br />
&nbsp;</td><br />
<br />
If the top frame is named 'topframe' and bottom frame is named 'bottomframe' where do I add the target="bottomframe" tag to this drop-down menu? <br />
<br />
Thanks, Kelly<!--content-->something like<br />
<br />
<br />
<select onChange="parent.bottomframe.location=options[selectedIndex].value;"><!--content-->
 
Back
Top