Hi,
Although I get by with coding for what I need on my web pages, and spend enormous amounts of hours doing so, I am now asking for some help.
I wish to call for a new window in a browser when clicking on the option value in the code below. This drop and go link list box works fine and it calls for the web page, but I need a new browser window to come up after clicking.
I tried 100, and I mean 100 things, and searched for tutorials but no luck.
Here's the code;
<select name="DropGoCombo0" onChange="GoNow0(this.form)" size=1>
<option value=http://pcchill.com/xcart/catalog/Seal-String-p-35.html>Seal String
<option value="4.html">test
<option value="5.html">test
<option value="" selected>(VIEW & ADD COOLING ACCESSORIES TO CART)
</select>
</BODY>
<script language="JavaScript">
<!--
function GoNow0(Form){
var i=Form.DropGoCombo0.selectedIndex;
var g=Form.DropGoCombo0.options[i].value;
if (g!="") parent.location=g;
}
//------>
</script>
</HTML>
Any help would be very much appreciated.