vote up 2 vote down star
2

I have a form with a standard reset button coded thusly:

<input type="reset" class="button standard" value="Clear" />

Trouble is, said form is of the multi-stage sort, so if a user fills out a stage & then returns later, the 'remembered' values for the various fields won't reset when the Clear button is clicked.

I'm thinking that attaching a jQuery function to loop over all the fields and clear them 'manually' would do the trick. I'm already using jQuery within the form, but am only just getting up to speed & so am not sure how to go about this, other than individually referencing each field by ID, which doesn't seem very efficient.

TIA for any help.

flag

@da5id: Something to keep in mind is that my accepted is also emptying hidden elements! You probably don't want this, so just add :hidden to the not() if your form has any hidden inputs. – Paolo Bergantino Mar 25 at 5:28
Thanks Paulo, very good point that I will bear in mind. – da5id Mar 25 at 5:30

6 Answers

vote up 11 vote down check

This should do the trick if the ID of your form is myform:

$(':input','#myform')
 .not(':button, :submit, :reset, :hidden')
 .val('')
 .removeAttr('checked')
 .removeAttr('selected');

It is using the :input selector which will match all input, textarea, select and button elements. Since we are passing #myform as the second argument, it will only find inputs inside this form element. Then it filters out all buttons, submits, resets and hidden inputs using not(). Then it is using val() to set the value of the remaining fields to an empty string, and then it uses removeAttr to remove the checked and selected attribute of the fields in case you have any radio/checkbox/select inputs. Tada.

link|flag
That :input is handy... now I know I'll use. Thanks Paolo :) +1 – alex Mar 25 at 4:51
Very nice, cheers, but will this clear the values of my buttons too? Can't test until later. – da5id Mar 25 at 4:58
@da5id, it may as the docs state it will match 'all input, textarea, select and button elements'. My selectors from my .find() in my answer should remedy this :) – alex Mar 25 at 5:04
It will match buttons, but I don't think it matches submit or reset buttons. If this is important, check my edit out. – Paolo Bergantino Mar 25 at 5:06
Ah yes, it will match <button> elements but not <input type="radio|reset"> I think ? – alex Mar 25 at 5:09
show 9 more comments
vote up 7 vote down

http://groups.google.com/group/jquery-dev/msg/2e0b7435a864beea

('#myform')[0].reset();

setting .val('') might not emulate "reset" 100% if you have an input like this

an input with a default value of 50

.val('') sets it to an empty string

calling a reset would reset it to its initial value of 50

link|flag
vote up 1 vote down

Here is something to get you started

$('form') // match your correct form 
.find('input[type!=submit], input[type!=reset]') // don't reset submit or reset
.val(''); // set their value to blank

Of course, if you have checkboxes/radio buttons, you'll need to modify this to include them as well and set .attr({'checked': false});

edit Paolo's answer is more concise. My answer is more wordy because I did not know about the :input selector, nor did I think about simply removing the checked attribute.

link|flag
vote up 1 vote down

Clearing forms is a bit tricky and not as simple as it looks.

Suggest you use the jQuery form plugin and use its clearForm or resetForm functionality. It takes care of most of the corner cases.

link|flag
vote up 0 vote down

A method I used on a fairly large form (50+ fields) was to just reload the form with AJAX, basically making a call back to the server and just returning the fields with their default values. This made is much easier than trying to grab each field with JS and then setting it to it's default value. It also allowed to me to keep the default values in one place--the server's code. On this site, there were also some different defaults depending on the settings for the account and therefore I didn't have to worry about sending these to JS. The only small issue I had to deal with were some suggest fields that required initialization after the AJAX call, but not a big deal.

link|flag
vote up 0 vote down

Hey, Cherian!

document.getElementById('frm').reset()

link|flag

Your Answer

Get an OpenID
or

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