Gaming, Computer Tech & Electronics Fortnite.CounterStrike.CallOfDuty.Dota.MineCraft.
Tips & tricks, tech support, home theatre, online gaming, reviews, latest news... |
 |
12-05-2013, 08:52 AM
|
#1
|
|
I contribute to threads in the offtopic forum
Join Date: Apr 2001
Location: VAN/RMD/BBY
Posts: 2,596
Thanked 1,022 Times in 450 Posts
Failed 54 Times in 30 Posts
|
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.
|
|
|
12-05-2013, 09:38 AM
|
#2
|
|
Banned By Establishment
Join Date: Feb 2008
Location: https://t.me/pu
Posts: 453
Thanked 201 Times in 33 Posts
Failed 4 Times in 4 Posts
|
Use window.open instead:
<select name="menu" onChange="window.open(this.options[this.selectedIndex].value);" value="GO">
Quote:
Originally Posted by Spoon
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.
|
|
|
|
12-05-2013, 09:45 AM
|
#3
|
|
I contribute to threads in the offtopic forum
Join Date: Apr 2001
Location: VAN/RMD/BBY
Posts: 2,596
Thanked 1,022 Times in 450 Posts
Failed 54 Times in 30 Posts
|
Worked like a charm.
Thank you a thousand times if I could.
|
|
|
 |
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -8. The time now is 07:05 AM.
|