Thommy: Auswahlmenü - Links in bestimmtes Frame

Beitrag lesen

Hi David!

Komme zwar nicht so ganz mit Deiner Art klar - aber Danke trotzdem:

hier die Lösung:

<html>
<head>
<title>DFB-Pokale</title>
<script type="text/javascript">
<!--
function Go(x)

{
 if(x == "nothing")
 {
   document.forms[0].reset();
   document.forms[0].elements[0].blur();
   parent.frames[1].focus();
   return;
 }
 else
  {
   parent.frames[1].location.href = x + ".htm";
   document.forms[0].reset();
   document.forms[0].elements[0].blur();
   parent.frames[1].focus();
  }
}
//-->
</script>
</head>
<body bgcolor="#EEEEEE" class="doc">
<form name="JSForm">
<select size="1" name="JSAusw" onChange="Go(this.form.JSAusw.options[this.form.JSAusw.options.selectedIndex].value)" class="qbar" style="width:350px;">
                <option value="auswahl">Pokal hier wählen:</option>
                <option value="p1974">Pokal 1973 / 1974</option>
                <option value="p1975">Pokal 1974 / 1975</option>
                <option value="p1981">Pokal 1980 / 1981</option>
                <option value="p1988">Pokal 1987 / 1988</option>
</select></form>
</body>
</html>

So, nach 6 Stunden Zeitverzögerung gehts weiter! ;)

Gruß Thommy