Debt Consolidation - Debt Consolidation - Credit Card Consolidation - Debt Consolidation - Market and finance

PDA

View Full Version : Simple Code Help, Please.


gemini181
Dec 4th 2006, 11:40 pm
Hi,

Most of this code (below) is a simple jump menu example. When I add links with a target=_blank...<option value="http://www.domain.com" target="_blank">Happy Holidays</option>...The link functions, but opens in the same window. How do I modify this form code so all targets=_blank?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Jump Menu Example</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}

function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_jumpMenuGo(selName,targ,restore){ //v3.0
var selObj = MM_findObj(selName); if (selObj) MM_jumpMenu(targ,selObj,restore);
}
//-->
</script>
</head>

<body bgcolor="#FFFFFF" text="#000000">
<form name="form1" method="post" action="">
<select name="menu1" onChange="MM_jumpMenu('parent',this,1)">
<option value="products.htm" selected>Products</option>
<option value="services.htm">Services</option>
<option value="http://www.domain.com" target="_blank">Happy Holidays</option>
<option value="contact.htm">Contact Us</option>
</select>
<input type="button" name="Button1" value="Go" onClick="MM_jumpMenuGo('menu1','parent',1)">
</form>
</body>
</html>

Thank you :)

lbalance
Dec 5th 2006, 8:05 am
i believe the "target" property only works with the <a> tag.

instead of doing a location.href, try using the window.open function.

weknowtheworld
Dec 13th 2006, 11:27 am
Yes it's correct .. I think you use Dreamweaver .. try to do it again with use of inbiult Dreamweaver function..