Feedback on: Dynamic Dropdown Menus
Best,
Damian
Thanks a lot!
Worth:
Very worth reading
Length:
Just right
Technical:
Too technical
Comments:
I found this article very useful indeed. I am trying to implement a similar form on my website, although I want mine to be able to be broken down even further to a 'third level' e.g. after selecting an artist, then an album, you are then able to select a track off the chosen album. Could you please let me know how this is done!! It'd be much appreciated!!
Cheers,
Mike Roberts
Worth:
Worth reading
Comments:
This article is worth reading but did not serve my purpose.
i need to get the dropdown box populated from the database and
if i change an item in the first dropdown it should get reflected in the second drop down .
this should work in netscape 4.0
Worth:
Very worth reading
Comments:
The closing </HEAD> element in the example page is botched (it appears as
<\/HEAD> instead!)
Cheers,
Richard.
Worth:
Very worth reading
Comments:
Dear Sir
I have read ur coding on above thing.But I am looking for a code which changes the elements of the
second dropdown corresponding in first dropdown element and same should continue to two or more dropdowns.
If possible emailthe free code else I will search in ur site
as usual.
Kindly yours
suneel
Comments:
Further to my previous question about having the choice in one dropdown list spawn a second array of choices in a second dropdown list, all the options-list boxes must be on a single page (frame), and not have one list just change the contents of another frame.
I can't see that the article on Dynamic Dropdown Menus applies.
Thanks for your help
Worth:
Very worth reading
Length:
Just right
Technical:
Just right
Comments:
Great site! I'm just starting to learn Javascript.
Some typos in your Dynamic Dropdown Menus article:
You have <\/HEAD> several times, instead of </HEAD>.
Also, the NAME attribute for FORM is not available in current versions, according to my ColdFusion software.
Thanks!
Worth:
Very worth reading
Comments:
Great article.
To exand on this... how would you add a dynamic drop down to say the 'Annie Lennox" of the artist page, and have the selection from that dynamic list viewed?
So when I select Anni Lennox on the first go drop down, I have a dynamic dropdown from say a database select criteria. The user would select the appropriate choice from the second drop down and view the document based on the second choice?
How would you do that? Your article has hardcoded choices, how would you build it to have dynamic choices pulled from a database. Assuming the odb connections are all correct. I just asking about the javascript portion??
Adele
Worth:
Very worth reading
Length:
Just right
Technical:
Just right
Comments:
The example at the end of the article (URL: http://tech.irt.org/articles/js042/who.htm ) has an incorrect ending <head> tag. The tag has an inapproriate backslash in it:
<\/head>
Cheers,
-Mark
USA
Worth:
Worth reading
Length:
Just right
Comments:
how can i get the menu displayed with the database elements where i store the menu function bits which differ from screen to screen??
then how can i call the appropriate function? as i am having function bits. pl. help me out.
Worth:
Very worth reading
Comments:
I have a suggestion this is great code but if you would like to populate the other dropdown menu as soon as you select a name just replace this
<FORM NAME="artists" onSubmit="return reshow(document.artists.artist)">
<SELECT NAME="artist">
with this
<FORM NAME="artists" >
<SELECT NAME="artist" onchange="return reshow(document.artists.artist)">
Worth:
Worth reading
Length:
Just right
Technical:
Just right
Comments:
The dynamic dropdown menu example (URL: http://tech.irt.org/articles/js042/who.htm) unfortunately doesn't work in Opera 5.
The remedy is quite simple, you only have to add /option tags to the first dropdown menu.
<SELECT NAME="artist">
<OPTION>Chris Rea</OPTION>
<OPTION>Annie Lennox</OPTION>
<OPTION>Dina Carrol</OPTION>
</SELECT>
Worth:
Worth reading
Comments:
Mine is a question more than a comment. I'm wondering whether it wouyld be possible to initiate the change between the two menus without clicking the GO button. That way, a person can see what their options would be instantaneously, without needing to select. Any ideas? Thanks.
Worth:
Worth reading
Comments:
Well Done...!!
Worth:
Very worth reading
Length:
Just right
Technical:
Just right
Comments:
This dropdown works fine in Internet Explorer. But when I tried to use it with Netscape 6 it does not work. It simply reloads the page. I tried several options, but the result is the same. Do you know how to solve this problem?
Thanks in advance!
Worth:
Worth reading
Length:
Technical:
Comments:
Ok I found this article worth reading, but the thing is that my problem is a little different. What I want to do is I want to create a drop-down menu from values of a field stored in a database dynamically. This task seems to be pretty typical as JavaScript is for client-side, while database records will work on server-side. How can we do this fusion? Can anyone suggest something? Thanks