up vote 1 down vote favorite
share [g+] share [fb]

Currently I have:

$("#your_email").val(this.defaultValue;)

I want to be cycling through all form elements and resetting them to their default value

link|improve this question

70% accept rate
2  
Do you have to use jQuery? Why not just use an input of type reset? It's meant to do exactly what you're trying to do. – Esteban Araya Aug 31 '10 at 15:08
1  
@Esteban: because jQuery is the answer to everything. – BalusC Aug 31 '10 at 15:17
1  
Doesn't seem to me that a jQuery solution was requested. this.defaultValue implies a native solution. – user113716 Aug 31 '10 at 15:41
@BalusC - Tru dat. Seems SO isn't so much a technology q/a platform as a soapbox for jQuery evangelists. – Joel Etherton Aug 31 '10 at 18:09
feedback

2 Answers

up vote 6 down vote accepted

you don't need jQuery for this, just get the form dom element and call reset() on it.

Or, fetch with jQuery like:

$("#myFormId")[0].reset();
link|improve this answer
cheers, thought there would be something obvious, don't know why I missed it. – kalpaitch Aug 31 '10 at 15:06
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>):

$( 'BUTTON#resetTrigger' ).click( function() {
    var sFormName = $(this).closest( 'FORM' ).attr( 'name' );
    document.forms[sFormName].reset();
}

The trigger could be anything, as long as it remains inside the form wrapper. If you need to trigger from the outside best use:

( 'BUTTON#resetTrigger' ).click( function() {
    var sFormName = this.rel;
    document.forms[sFormName].reset();
}

with

<form name="formName">
</form>
<button id="resetTrigger" rel="formName">reset</button>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.