pulldown menu

rycon

Mitglied
<script language="JavaScript1.2">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
//-->
</script>

Was muss ich da verändern, damit sich die ausgewählten Links im jump menu in nem neuen Fenster öffnen ?
 
objekt "´" erwartet

hier nochmal der volle sript mit dem menu

head:

<script language="JavaScript1.2">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
//-->
</script>

menu:


<select style="FONT-SIZE: 10px; COLOR: #00000; FONT-FAMILY: arial; BACKGROUND-COLOR: #F7F7F7" name="bla" onChange="MM_jumpMenu('parent',this,0)" size="1">
<option selected>test</option>
<option>-------------------------</option>
<option value="http://www.test.com">test</option>
</select>
 
Zuletzt bearbeitet:
huups ich sehs gerade. da war ich wohl nicht wirklich bei der sache.
du musst per js ein neues fenster machen.

so sollte es funktionieren:

Code:
function MM_jumpMenu(targ,selObj,restore){ 

window.open(selObj.options[selObj.selectedIndex].value, "Titel der Seite", "resizable=yes, toolbar=yes, location=yes, directories=yes, status=yes, menubar=yes, scrollbars=yes");

}
 
das hier is ein richtiges pulldownmenü:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> 

<html> 
<head> 
    <title>Untitled</title> 
    <script language="JavaScript"> 
    function surfto(form) { 
        var myindex = form.navi.selectedIndex 
        if(form.navi.options[myindex].value != "0") { 
        document.location.href = form.navi.options[myindex].value; 
      } 
    } 
    </script> 
</head> 

<body> 
<form name="myform"> 
<select name="navi" onChange="surfto(this.form)" size=1> 
  <option value="0" selected>  --> Wählen Sie aus <--  </option> 
  <option value="about.html" selected>About</option> 
  <option value="register.html" selected>Register</option> 
</select> 
</form> 
</body> 
</html>

greetZZzz
 

Neue Beiträge

Zurück