HighDots Forums  

Newbie Question - switch statement

Javascript JavaScript language (comp.lang.javascript)


Discuss Newbie Question - switch statement in the Javascript forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Greg Scharlemann
 
Posts: n/a

Default Newbie Question - switch statement - 12-04-2003 , 10:52 AM






I am attempting to populate a drop down menu based on the selection of
an item in a different drop down menu.

This is the function that I found on the internet/modified for my use:

function populateMenu() {
document.write("<select name=phase>");
id = "test1";
switch (id) {
case "test1":
document.write("option value=1>One</option>");
document.write("option value=2>Two</option>");
document.write("option value=3>Three</option>");
document.write("option value=4>Four</option>");
document.write("option value=5>Five</option>");
break;
default:
document.write("option value= >Error</option>");
break;
}
}


Then later on I have:
<script>populateMenu();</script>

but it doesn't populate the drop down menu with the One, Two... it
just gives me a blank drop down menu. What am I doing wrong?

Thanks

Reply With Quote
  #2  
Old   
620
 
Posts: n/a

Default Re: Newbie Question - switch statement - 12-04-2003 , 11:28 AM






"Greg Scharlemann" <greg (AT) dreamatlantic (DOT) com> wrote

Quote:
I am attempting to populate a drop down menu based on the selection of

function populateMenu() {
document.write("<select name=phase>");
id = "test1";
switch (id) {
case "test1":
document.write("option value=1>One</option>");
document.write("option value=2>Two</option>");
document.write("option value=3>Three</option>");
document.write("option value=4>Four</option>");
document.write("option value=5>Five</option>");
break;
default:
document.write("option value= >Error</option>");
break;
}
}
just gives me a blank drop down menu. What am I doing wrong?

Thanks
The option tags you're .writing are malformed. You need to open them with <




Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.