Hi all, I have some newbie questions. I’m building a form to use as symptom checker and I do not need my form to submit, but I do need people to be able to start over.
How can I do this?
Thanks!
Hi all, I have some newbie questions. I’m building a form to use as symptom checker and I do not need my form to submit, but I do need people to be able to start over.
How can I do this?
Thanks!
I found the instructions for hiding the submit button.
What is the best way for my user to start over? I only have three questions so far, but just refreshing the page seems inelegant.
Hi Sandy,
To allow users to reset the form or start over, you can add an HTML field and put the following code there. It will add a button to clear the form.
<input type="reset" value="Clear Form" />
Give it a try, and let me know how that goes! ![]()
If the form is using conditional logic, calculations, or dynamic population, a reset type button won’t work. You would be better having a link that contains the URL of the page.
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.