vote up 0 vote down star

I need to do a quick and dirty 'Country' --> 'State' drop down relationship on a web form. I only am concerned with the states, provinces, and territories for USA and Canada, and this will be a relatively lightly used form, so a pure javascript solution is probably ideal.

flag

1 Answer

vote up 1 vote down check

Create a JSON array:

array = [ { name: "United States", states: [...] }, { ... } ];

When the value of the dropdown changes, fill in the other drop down with the contents of the particular element from the array.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.