PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Reset Form Button

  1. Is there a way to create a button that will reset all the value in a form. I am planning to use the new PayPal add on. I have been experimenting and see that changes in conditional logic does not recalculate the total. I am thinking there should be a way to just clear out the form.

    Posted 13 years ago on Saturday November 27, 2010 | Permalink
  2. You can use the html form element and enter this to make a reset button appear:

    <input type="reset" value="Reset" />

    Posted 13 years ago on Monday November 29, 2010 | Permalink
  3. for my form issue - where multiple conditional elements were showing up in some cases - the reset didn't work. so i made a simple button to just refresh the page as a way to reset the form.

    Reset this form

    and simple CSS to style it:
    a.inputreset {
    background: none repeat scroll 0 0 #0033CC;
    color: #ffffff;
    padding: 8px; text-decoration:none
    }

    Posted 12 years ago on Friday June 24, 2011 | Permalink

This topic has been resolved and has been closed to new replies.