Hi All,
I'm new to Javascript and have been learning by reverse-engineering. I'm having trouble with this one, however. I have a simple form that has three drop downs. I would like my form to auto-select values (from an existing list, not adding values to that list) in the second two drop downs based on the value selected in the first drop down.
My drop downs are:
Ballot Type
Ballot Issue Method
Ballot Return Method
When the option "Polling" is selected in the Ballot Type drop down, I would like my form to automatically select the value "In Person" for both the Ballot Issue Method and Ballot Return Method drop downs. These values are already options in these lists and don't need to be added. When a different value is selected in the Ballot Type drop down, I don't want a value selected in the other two drop downs, they will be manually selected by the user.
How would you go about doing this?
Thanks!