I'm trying to build a typeform like form with several sections where the user input options are images taken from a collection. The options presented in the second section of the form need to change based on the options selected on the first section of the form. I also need to make these options exhibit checkbox like behavior (multiple can be selected) in some sections and radio like (only one can be selected). Can someone help out with some ideas or examples on how to build this
Here is an example screenshot of what I'm trying to do.
To make a form with repeater items as dynamic choices, do the following:
Set up the HTML structure with a place for repeater items, a button to add items, and a send button.
2. Set the CSS styles for the things in the repeater.
3. Put the dynamic choices in a JavaScript array.
4. Write a method that adds an item to a repeater on the fly.
5. Create a select element inside the function and fill it with choices from the array of dynamic options.
6. Connect the select element to the repeater item and add the repeater item to the container.
7. Add the choices you want to the array of dynamic options.
8. Use server-side code or JavaScript, as needed, to handle form submissions.
KanTime Medicare