You do realize, you dont even need any of that complex coding for a dropdown selector.
Ive been making dropdowns on this form since he first released this.
For example on your form template all you do is this,
<select name="answer3">
<option selected></option>
<option>cows</option>
<option>rabbits</option>
<option>dogs</option>
<option>cats</option>
</select>
Just make sure the name of the dropdown is called answer1, answer2, answer3 and so on.
|