Need Javascript help
Kind of noob when it comes to javascript. Can anyone help me out and edit the following code so it would open a new window when one of the options get clicked? It's currently opening in the same window.
-------------------
<form name="cityselect"> <select name="menu" onChange="window.document.location.href=this.optio ns[this.selectedIndex].value;" value="GO">
<option selected="selected">Select a City</option>
<option value="http://www.vancouver.com">Vancouver</option>
<option value="http://www.calgary.com">calgary</option>
<option value="http://www.edmonton.com">Edmonton</option>
</select>
</form>
-------------------
Thanks!
Note: not sure why there's a space placed between the word options when I publish the post, but it's not suppose to be there.
|