Hi smart people. I am not well versed in coding, but I have an issue that apparently needs coding to work.
I have a Wix form with several radio buttons that need user input short text if the user selects “Other” from the list of options. This type of input is needed for about 6 separate questions within the form.
Can someone help me with what coding is required to set up that functionality?
See screenshot of form below. Thank you in advance!
Christine,
It looks like this is a one-time form that the customer fills out. The logic is relatively straightforward compared to some other coding tasks.
You will want to add six input boxes if you haven’t already done so.

To add the code block for the change event, click the “+” icon opposite the onChange event in the property sheet when you have the radio group selected.
The selectedIndex property of radio group is 0-based, meaning the first option is 0, the second option’s index is 1, and so on. “Other” in this example has an index of 3.
Anthony:
Thank you very, very much. I was able to follow your instruction and get it done. I really appreciate your help.