• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 19:06
CET 00:06
KST 08:06
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
ByuL: The Forgotten Master of ZvT29Behind the Blue - Team Liquid History Book19Clem wins HomeStory Cup 289HomeStory Cup 28 - Info & Preview13Rongyi Cup S3 - Preview & Info8
Community News
BSL Season 223Vitality ends partnership with ONSYDE20Team Liquid Map Contest - Preparation Notice6Weekly Cups (Feb 23-Mar 1): herO doubles, 2v2 bonanza2Weekly Cups (Feb 16-22): MaxPax doubles0
StarCraft 2
General
GSL CK - new tournament Weekly Cups (Feb 23-Mar 1): herO doubles, 2v2 bonanza Vitality ends partnership with ONSYDE How do you think the 5.0.15 balance patch (Oct 2025) for StarCraft II has affected the game? Team Liquid Map Contest - Preparation Notice
Tourneys
RSL Season 4 announced for March-April Sparkling Tuna Cup - Weekly Open Tournament PIG STY FESTIVAL 7.0! (19 Feb - 1 Mar) $5,000 WardiTV Winter Championship 2026 Sea Duckling Open (Global, Bronze-Diamond)
Strategy
Custom Maps
Publishing has been re-enabled! [Feb 24th 2026] Map Editor closed ?
External Content
The PondCast: SC2 News & Results Mutation # 516 Specter of Death Mutation # 515 Together Forever Mutation # 514 Ulnar New Year
Brood War
General
BSL 22 Map Contest — Submissions OPEN to March 10 BGH Auto Balance -> http://bghmmr.eu/ battle.net problems ASL21 General Discussion BSL Season 22
Tourneys
ASL Season 21 Qualifiers March 7-8 [Megathread] Daily Proleagues BWCL Season 64 Announcement [BSL22] Open Qualifier #1 - Sunday 21:00 CET
Strategy
Soma's 9 hatch build from ASL Game 2 Fighting Spirit mining rates Simple Questions, Simple Answers Zealot bombing is no longer popular?
Other Games
General Games
Nintendo Switch Thread PC Games Sales Thread Path of Exile No Man's Sky (PS4 and PC) Stormgate/Frost Giant Megathread
Dota 2
Official 'what is Dota anymore' discussion The Story of Wings Gaming
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Mafia Game Mode Feedback/Ideas Vanilla Mini Mafia TL Mafia Community Thread
Community
General
US Politics Mega-thread Mexico's Drug War Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine YouTube Thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
[Req][Books] Good Fantasy/SciFi books [Manga] One Piece Anime Discussion Thread
Sports
2024 - 2026 Football Thread Cricket [SPORT] Formula 1 Discussion TL MMA Pick'em Pool 2013
World Cup 2022
Tech Support
Laptop capable of using Photoshop Lightroom?
TL Community
The Automated Ban List
Blogs
FS++
Kraekkling
Shocked by a laser…
Spydermine0240
Gaming-Related Deaths
TrAiDoS
ONE GREAT AMERICAN MARINE…
XenOsky
Unintentional protectionism…
Uldridge
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1912 users

Another Plea for Help...This time: Javascript

Blogs > Polemos
Post a Reply
Polemos
Profile Blog Joined March 2011
United States160 Posts
August 12 2011 16:17 GMT
#1
Okay - I have seriously struggled on this for about 10 hours. I have been trying a little bit of javascript, but not without it's issues.

I have a html dropdown menu: Select & options and what not. I have tried to put an onlick event with javascript to put make a popup when a certain element is clicked. This functions perfectly in Firefox & Opera, but not in Safari & Chrome. I have searched for hours with no luck, so I turn to you guys :[ Can anyone tell me WHY this isn't working.

Thank you so much !

+ Show Spoiler +


<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="popup.css" />
<script type="text/javascript">
function myPopup3() {
window.open("http://dev.ieworks.net/devtest/location_add.html","myWindow"," status=1, height=300, width=300, resizable=0");
}
</script>
<script type="text/javascript">
<!--
document.getElementById("demo").innerHTML=Date();
//-->
</script>
</head>
<body>
<form>
<input type="button" onClick="myPopup3()" value="Click Meh!">
</form>
<!--<p onClick="myPopup2()">Click This^^^^!</p>-->
<form>
<select>
<option value="Select">Select an option</option>
<option value="----" disabled="disabled">----------------------</optgroup>
<option value="Click here!" onclick="myPopup3()">Click here!</option>
<option value="Hi there!">Hi there!</option>
</select>
</body>

Elements not working in Safari and Chrome are in bold.


Link to where website is up: dev.ieworks.net/devtest/popup.html

Thank you!!!


It is better to be hated for who you are then loved for who you are not.
SnowPet
Profile Joined August 2004
9 Posts
August 12 2011 16:33 GMT
#2
Might be because those browser have a better inbuilt popup blocker. The fact that it's working in my FF is an annoyance to me.
Polemos
Profile Blog Joined March 2011
United States160 Posts
August 12 2011 16:34 GMT
#3
._.

It works in Chrome if you press the button and don't use the drop-down menu to pop it open.
It is better to be hated for who you are then loved for who you are not.
Kr1pos
Profile Joined January 2008
Norway67 Posts
Last Edited: 2011-08-12 16:44:31
August 12 2011 16:41 GMT
#4
As you are experiencing, onClick() is not supported on the option-tag in many browsers. Instead you should use the "onChange()"-event for the select-tag and do whatever if a check shows the selected item is the one you want.

Edit: Also, I don't understand how you didn't find this out by searching. Almost every hit on the first page from a Google-search for "javascript option onclick" seems to be about this.
Polemos
Profile Blog Joined March 2011
United States160 Posts
August 12 2011 16:44 GMT
#5
so - How do I have to change

<option value="Click here!" onChange="myPopup3()">Click here!</option>

?
It is better to be hated for who you are then loved for who you are not.
Kr1pos
Profile Joined January 2008
Norway67 Posts
August 12 2011 16:57 GMT
#6
Here's an example using onChange() (adapted from the first hit on Google for the search mentioned above):
+ Show Spoiler +
<script type="text/javascript">
function changeFunc(valueSelected) {
if(valueSelected == "Click here!") alert("You selected \'Click here!\'");
else alert("You selected something else");
}
</script>

<select onchange="changeFunc(this.value);">
<option value="Select">Select an option</option>
<option value="Click here!">Click here!</option>
<option value="Hi there!">Hi there!</option>
</select>
Polemos
Profile Blog Joined March 2011
United States160 Posts
August 12 2011 17:12 GMT
#7
I'm sorry - I'm having a lot of problems following that. I don't see how to make it work.
It is better to be hated for who you are then loved for who you are not.
Kr1pos
Profile Joined January 2008
Norway67 Posts
Last Edited: 2011-08-12 17:33:24
August 12 2011 17:32 GMT
#8
I'm no Javascript-expert, but I can try a quick explanation

<select onchange="changeFunc(this.value);">
This means, when what's selected in the combo-box changes, the function named "changeFunc" is called. Passed on to the function is the value of the selected item (in "this.value", this refers to the <option> selected, so we're passing on the <option>'s value).

For example, if you have an selectable item defined by <option value="item1">Something</option> and selects it, the function changeFunc is called with "item1" as the argument.

function changeFunc(valueSelected) {
if(valueSelected == "Click here!") alert("You selected \'Click here!\'");
else alert("You selected something else");
}
This defines the function which is called when the selection changes. In it, I check if the passed argument (named valueSelected) is something I'm looking for. The function checks if the value is equal to "Click here!", and depending on if it is or not it display different messages.

In your case you don't want to display a message but rather open a window, so you'd change it to:
+ Show Spoiler +
if(valueSelected == "Click here!") window.open("http://dev.ieworks.net/devtest/location_add.html","myWindow"," status=1, height=300, width=300, resizable=0");

That way, even though the function is called on every change in the combo-box, a new window is only opened when the change is that the item with value "Click here!" was selected.

Hopefully that helps
Please log in or register to reply.
Live Events Refresh
Next event in 54m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
elazer 268
SteadfastSC 177
ProTech160
JuggernautJason93
CosmosSc2 14
StarCraft: Brood War
Artosis 552
ggaemo 91
LancerX 18
Dota 2
monkeys_forever300
Counter-Strike
byalli615
Super Smash Bros
AZ_Axe77
PPMD40
Heroes of the Storm
Liquid`Hasu445
Other Games
gofns46198
tarik_tv18512
summit1g8858
Grubby3494
shahzam303
ToD181
C9.Mang0125
Maynarde83
Organizations
Other Games
gamesdonequick2270
BasetradeTV56
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• Hupsaiya 87
• musti20045 32
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• Eskiya23 16
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• TFBlade1317
Other Games
• imaqtpie1457
Upcoming Events
OSC
54m
Wardi Open
12h 54m
PiGosaur Monday
1d
WardiTV Team League
1d 12h
Replay Cast
2 days
The PondCast
2 days
WardiTV Team League
2 days
Replay Cast
3 days
Replay Cast
4 days
CranKy Ducklings
4 days
[ Show More ]
WardiTV Team League
4 days
uThermal 2v2 Circuit
4 days
Replay Cast
5 days
Sparkling Tuna Cup
5 days
WardiTV Team League
5 days
Replay Cast
6 days
Replay Cast
6 days
Wardi Open
6 days
Monday Night Weeklies
6 days
Liquipedia Results

Completed

ASL Season 21: Qualifier #2
WardiTV Winter 2026
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
Jeongseon Sooper Cup
Spring Cup 2026
BSL Season 22
RSL Revival: Season 4
Nations Cup 2026
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual

Upcoming

ASL Season 21
Acropolis #4 - TS6
Acropolis #4
IPSL Spring 2026
CSLAN 4
HSC XXIX
uThermal 2v2 2026 Main Event
Bellum Gens Elite Stara Zagora 2026
NationLESS Cup
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League S23 Finals
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2026 TLnet. All Rights Reserved.