Last time I posted on this board, I got an instant response to my question... and thus far, I haven't been able to get any help on the following issue.
It's a pretty basic Javascript question (although I am not good with Javascript). I am just trying to make the following pulldown menu open the page into a new window when selected.
Here is the code... any help is appreciated. I apologize if posting outside of PHP is major 'no-no.'
<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>
=============
<select name="select" onChange="MM_jumpMenu('parent',this,0)">
<option value="#" selected>Search Products</option>
<option value="9006.html">AC/DC Portable Fans</option>
</select>
thanks,
dbaz