Thomas J.S.: JS-pulldownmenü im Frames

Beitrag lesen

Hallo an Alle!

Das Problem:
Framefenster: linkes Fenster ein JS-pulldownmenü, im rechten Fenster sollten die im Pulldownmenü angegebene Punkte angezeigt werden (also andere html-Dateien). Angezeigt werden sie aber immer in der selben Fensterseite (linkes Frame) wo auch das menü ist.
Hat jemand eine Idee, wie das zu bewerkstelligen ist, daß es richtig funktioniert?

Der script:

<script language="JavaScript" type="text/javascript">
<!--
  function go(){
  if (document.selecter.select1.options[document.selecter.select1.selectedIndex].value !=   "none") {
  location = document.selecter.select1.options[document.selecter.select1.selectedIndex].value
      }
              }
//-->
</script>

<script language="JavaScript" type="text/javascript">
<!--
  document.write('<form name="selecter"><select name="select1" size=1>');
  document.write('<option value=none>Select a Picture:');
  document.write('<option value=none>--------------------');
  document.write('<option value="pic-earth.htm">Earth');
  document.write('<option value="pic-jupiter.htm">Jupiter');
  document.write('<option value="pic-mars.htm">Mars');
  document.write('</select>');
  document.write('<input type="button" value="Go" onclick="go()">');
  document.write('</form>');
-->
</script>

Für jegliche Tips bin ich dankbar.
Grüße
Thomas