~*Paopu-san
02-02-2003, 08:31 PM
um ^^ does anyone know how to target a link from a dropdown menu to another frame..? kinda like iframes..i tried messing around with it and it doesn't work when i try :( does anyone know how to do that?? is it even possible oO;;
aerith86
02-02-2003, 08:34 PM
It's unfortunately not possible. I mean, you can target frames with a dropdown menu, but you can only target one frame. You'd need multiple dropdown menus for targeting other frames.
~*Paopu-san
02-02-2003, 08:36 PM
oh x_x poo. umm XD how do you do whatever you just said? x_X
aerith86
02-02-2003, 08:38 PM
Target frames or make other dropdown menus?
aerith86
02-02-2003, 08:41 PM
<a href="http://www.yourlinkhere.com" target="nameofyourframe">Link Name</a>
If you need any more help with targeting frames, feel free to private message me or if you have AIM, my name is KRDesenchantee.
http://www.lissaexplains.com/forum/showthread.php?s=&threadid=29187
yepthatsit
04-17-2005, 02:00 AM
this will do the job .
<script language="javascript">
function jump(form) {
var myindex=form.menu.selectedIndex
if (form.menu.options[myindex].value != "0")
{
window.open(form.menu.options[myindex].value,
target="yourframename");
}
}
//-->
</script>
<form name="shakmenu3">
<select name="menu" style="background-color: #FFFFFF ;
font size=11 ; font-family: ariel; color:#000000"
size="1" onchange="jump(this.form)">
<option value="0">Select One</option>
<option value="0"></option>
<option value="http://www.saskatooncity.com">Saskatoon City</option>
<option value="http://www.saskatooncity.com">Saskatoon City</option>
</select>
</form>
Put this in the body of your page and change the target= and form name= to your personal information