Moin Moin,
Ich habe ein kleines Problem mit einem Sprungmenü. Von diesem Sprungmenü möchte ich jeweils ein neues Fenster per JavaScript öffnen.
Als normaler Link funktioniert es auch einwandfrei. Der Code sieht bei mit folgendermassen aus.
Mein Sprungmenü ist Standard (mit DW4 erstellt)
Wie stelle ich es an, dass wenn man auf den "Gehe zu"-Button klickt, dass sich ein neues PopUp-Fenster öffnet?
Ich hoffe, dass mir hier jemand helfen kann.
Für eure Mühe vielen Dank im Voraus
Leif.
Ich habe ein kleines Problem mit einem Sprungmenü. Von diesem Sprungmenü möchte ich jeweils ein neues Fenster per JavaScript öffnen.
Als normaler Link funktioniert es auch einwandfrei. Der Code sieht bei mit folgendermassen aus.
Code:
<html>
<head>
<title>Fenster mit JavaScript</title>
<script type="text/javascript">
<!--
function PopupFenster() {
F = window.open("photogallery_1.htm","Popup","width=640,height=410,screenX=0,screenY=200,locationbar=no,menubar=no,scrollbars=yes,resizable=no");
}
// -->
</script>
</head>
<body>
<p><a href="javascript:PopupFenster()">photogallery_1</a></p>
</body>
</html>
Code:
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<form name="form1">
<select name="menu1" onChange="MM_jumpMenu('parent',this,0)">
<option value="file:///C|/WEBSITES/speicher-rockt/liveclub.htm">liveclub</option>
<option value="file:///C|/WEBSITES/speicher-rockt/galerie.htm">galerie</option>
<option value="file:///C|/WEBSITES/speicher-rockt/photogallery_1.htm">photogallery_1</option>
</select>
<input type="button" name="Button1" value="Gehe zu" onClick="MM_jumpMenuGo('menu1','parent',0)">
</form>
</body>
</html>
Ich hoffe, dass mir hier jemand helfen kann.
Für eure Mühe vielen Dank im Voraus
Leif.
Zuletzt bearbeitet von einem Moderator: