Good Morning All,
Hopefully someone out there has a resolution to this issue.
I have a form that I want to use drop down boxes for the country and state.
That is no problem, I already have them.
The issue comes in when someone has filled out the form, but there is an error in their entry, so they have to be taken back to the form to correct the error.
I do this by creating a secondary form with all the same fields in it, in hidden format, and then submit that form, which carries all the data they selected back into the original form.
With ONE (two) EXCEPTION.. the drop down boxes. They revert to no selection.
What is the simple solution to this? Any suggestions?
<select id="state" name="state">
<option value="">Select State</option>
<option value="AL">Alabama</option>
<option value="AK">Alaska</option>
...etc
</select>
How do I carry what they have selected on their first attempt back so it will display whichever state they chose?
Thanks in advance.
Douglas