Currently I have:
$("#your_email").val(this.defaultValue;)
I want to be cycling through all form elements and resetting them to their default value
|
Currently I have:
I want to be cycling through all form elements and resetting them to their default value
| ||||
|
feedback
|
|
you don't need jQuery for this, just get the form dom element and call reset() on it. Or, fetch with jQuery like:
| |||
feedback
|
|
I tend to use a combination of jQuery and straight forward JavaScript-.reset()-function to reset my forms from within the form wrapper (inside <form></form>):
The trigger could be anything, as long as it remains inside the form wrapper. If you need to trigger from the outside best use:
with
| |||
|
feedback
|
this.defaultValueimplies a native solution. – user113716 Aug 31 '10 at 15:41