piranja: Verweisliste zum Ändern mehrerer Frames gleichzeitig

Beitrag lesen

Ach so, dann suchst du also sowas hier ...?

  1. Das Listenmenu

<form name="form">
<select name="menu" onchange="ZweiFrames(document.form.menu.options[document.form.menu.selectedIndex].value,'oben','unten');">
<option>...bitte wählen Sie</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
</form>

<script type="text/javascript">
function ZweiFrames(selekted,F1,F2) {
  Frame1=eval("parent."+F1);
  Frame2=eval("parent."+F2);
 switch(selekted) {
 case "1":
   Frame1.location.href = 'test.html';
   Frame2.location.href = 'test1.html';
   break;
 case "2":
  Frame1.location.href = 'test1.html';
  Frame2.location.href = 'test2.html';
   break;
 case "3":
   Frame1.location.href = 'test2.html';
   Frame2.location.href = 'test3.html';
   break;
}
}
</script>

LG, piranja

das hab ich ja selber, trotzdem danke, aber das ist nur ein normales Menü mit einzelnen Links. Ich will als Menü aber eine Dropdown-Liste/Auswahlliste.