Does anyone know why won't this work? I want the menu items in my jump menu to open in a new "_blank" page.
Can't I just do it this way:
or do I have to change something in the <head> script:
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'"
;
if (restore) selObj.selectedIndex=0;
}
//-->
</script>[/code]
OR do I have to change something here:
Bob
Can't I just do it this way:
Code:
<option value="[URL unfurl="true"]http://www.editfast.com/editsub.htm"[/URL] target="_blank">Submissions</option>
or do I have to change something in the <head> script:
Code:
<script language="JavaScript">
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'"
if (restore) selObj.selectedIndex=0;
}
//-->
</script>[/code]
OR do I have to change something here:
Code:
<form name="form1">
<select name="menu1" onChange="MM_jumpMenu('parent',this,0)">
Bob