Hallo
auf meiner Homepage habe ich 3 Frames (der
index.htm Quellcode folgt). Jetzt
habeich auf der Seite oben.htm die Quickbar...
Wenn du so eine hast wie ich und die ich meine (Quellcode folgt unten, vielleicht ist deiner ähnlich) dann sagt bei
parent.frames[1].location; und parent.frames[1].location.href = x; die Zahl in der Klammer aus, welches frame geöffnet werden soll(0 = erstes Frame, 1 = zweites ....)
<script language="javascript">
function Go(x)
{
if(x == "nothing")
{
document.forms[0].reset();
document.forms[0].elements[0].blur();
return;parent.frames[1].location.href = x;
}
else if(x == "end") top.location.href = parent.frames[1].location;
else
{
document.forms[0].reset();
document.forms[0].elements[0].blur();
}
}
</script>
<form> <select size=1 name="Auswahl" onChange=
"Go(this.form.Auswahl.options[this.form.Auswahl.options.selectedIndex].value)"
style="width:130px; background-color:#FFFFFF;
font-size:9pt; font-family:Arial,sans-serif">
<option value="nothing">RealAudio-Sender
<option value="dir_ral/hardrock.htm">Hardrock
<option value="dir_ral/moderner_rock_pop.htm">Rock/Pop
<option value="dir_ral/alternativ_musik.htm">Alternativ-Musik
<option value="dir_ral/top_40.htm">Top 40 Musik
<option value="dir_ral/jazz.htm">Jazz
<option value="dir_ral/sport.htm">Sport
<option value="dir_ral/business.htm">Business
</select>
</form>