Hi - I am writing a web page in which I want to use javascript to dynamically generate a drop down menue based on which radio button is selected. I've tried to set up a javascript function to generate this drop down using code
document.form.dowpdownname.options[0] = new Option('', '', '');
but this is not working.
I have a page with:
0 Select this option
0 Select this option 2
Drop down
(should changed based on above selection)
Any help?
document.form.dowpdownname.options[0] = new Option('', '', '');
but this is not working.
I have a page with:
0 Select this option
0 Select this option 2
Drop down
(should changed based on above selection)
Any help?