up vote 157 down vote favorite
65
share [g+] share [fb]

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.

link|improve this question

1  
@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 '09 at 5:28
Thanks Paulo, very good point that I will bear in mind. – da5id Mar 25 '09 at 5:30
1  
To anyone looking for a good answer, be careful. The accepted answer is on the right track but has bugs. The most voted answer as of now did not understand the question. Many other answers also misunderstood and confused reset with blank/clear. – Mytskine Aug 25 '11 at 2:21
Mystkine's right- Both the question and currently accepted answer conflate clearing with resetting - I think the questioner was really looking for a multi-stage form reset solution, despite the original title- I've updated the title accordingly. – Yarin Nov 9 '11 at 13:42
feedback

17 Answers

up vote 244 down vote accepted

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|improve this answer
2  
That :input is handy... now I know I'll use. Thanks Paolo :) +1 – alex Mar 25 '09 at 4:51
Very nice, cheers, but will this clear the values of my buttons too? Can't test until later. – da5id Mar 25 '09 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 '09 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 '09 at 5:06
Ah yes, it will match <button> elements but not <input type="radio|reset"> I think ? – alex Mar 25 '09 at 5:09
show 16 more comments
feedback

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

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

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

<input name="percent" value="50"/>

Eg calling myinput.val('') on an input with a default value of 50 would set it to an empty string, whereas calling myform.reset() would reset it to its initial value of 50.

link|improve this answer
3  
thanks, this is a great way to clear a form containing: input type="file". – neoneye Mar 18 '10 at 8:16
31  
+1 Most reliable and best-performing answer here. – Liam May 28 '10 at 14:58
10  
I think 34 people have misunderstood what the question here is. The asker knows about reset, the form will "reset" to the values that his script is remembering and he needs to force them to be blanked out. – Paolo Bergantino Jul 21 '10 at 13:36
+1 Best One. Thanks – NAVEED Dec 29 '10 at 11:03
feedback

There's a big problem with Paolo's accepted answer. Consider:

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

The .val('') line will also clear any value's assigned to checkboxes and radio buttons. So if (like me) you do something like this:

<input type="checkbox" name="list[]" value="one" />
<input type="checkbox" name="list[]" value="two" checked="checked" />
<input type="checkbox" name="list[]" value="three" />

Using the accepted answer will transform your inputs into:

<input type="checkbox" name="list[]" value="" />
<input type="checkbox" name="list[]" value="" />
<input type="checkbox" name="list[]" value="" />

Oops - I was using that value!

Here's a modified version that will keep your checkbox and radio values:

// Use a whitelist of fields to minimize unintended side effects.
$(':text, :password, :file, SELECT', '#myFormId').val('');  
// De-select any checkboxes, radios and drop-down menus
$(':input', '#myFormId').removeAttr('checked').removeAttr('selected');
link|improve this answer
1  
For some reason this doesn't work for me on select elements. Can you fix this? – Pentium10 Jan 28 '11 at 22:34
$(':input,:select', '#myFormId').removeAttr('checked').removeAttr('selected'); should work – sakhunzai Jun 15 '11 at 4:58
this is the correct answer. If you use the accepted answer, the form does clear after you submit. However, if you want to submit the form again, none of your checkbox or radio button data will be captured since your value attributes will be erased. – djblue2009 Nov 8 '11 at 9:37
feedback
document.getElementById('frm').reset()
link|improve this answer
6  
if you are a fan of jQuery this could be rewritten to: $('frm')[0].reset() – dmitko Jul 6 '10 at 7:11
feedback

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|improve this answer
$('#form_id').clearForm(); is just what I needed -- thanks! "Clears the form elements. This method emptys all of the text inputs, password inputs and textarea elements, clears the selection in any select elements, and unchecks all radio and checkbox inputs." (resetForm, on the other hand, "Resets the form to its original state by invoking the form element's native DOM method.") – Tyler Rick Sep 28 '10 at 22:49
feedback

I usually do:

$('#formDiv form').get(0).reset()

or

$('#formId').get(0).reset()
link|improve this answer
feedback

Consider using the validation plugin - it's great! And reseting form is simple:

var validator = $("#myform").validate();
validator.resetForm();
link|improve this answer
feedback

I find this works well.

$(":input").not(":button, :submit, :reset, :hidden").each( function() {
    this.value = this.defaultValue;     
});
link|improve this answer
feedback

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|improve this answer
feedback

Why need jQUery ?

Just a simple line in Javascript:

document.getElementById('frmitem').reset();

Just remember, we use jQuery for faster coding, in some case, if its not faster, we must use other way faster and shorter code.

link|improve this answer
feedback

When using jQuery, you can reset a form simply by using the reset function. The trick is, you have to reference [0] on the selected form for it to work.

$('#my-form')[0].reset();

or

jQuery('#my-form')[0].reset();

Should do the trick very nicely.

Or, if you have pre-populated fields where reset would only reset the values back to what was originally populated instead of clearing it, you could use something like this:

$('#my-form').find('input, select, textarea').not(':button, :submit, :reset, :hidden').val('').removeAttr('checked').removeAttr('selected');

And of course, you can remove the :hidden from the .not selector if you want to clear hidden fields as well.

link|improve this answer
feedback

I normally add a hidden reset button to the form. when needed just: $('#reset').click();

link|improve this answer
why do you answer a post which has been answered, and approved over 2 years ago? And including this, your post is also low quality – Topener Oct 10 '11 at 16:31
feedback

this worked for me , pyrotex answer didn' reset select fields, took his, here' my edit:

// Use a whitelist of fields to minimize unintended side effects.
$(':text, :password, :file', '#myFormId').val('');  
// De-select any checkboxes, radios and drop-down menus
$(':input,select option', '#myFormId').removeAttr('checked').removeAttr('selected');
//this is for selecting the first entry of the select
$('select option:first', '#myFormId').attr('selected',true);
link|improve this answer
feedback

All these answers are good but the absolute easiest way of doing it is with a fake reset, that is you use a link and a reset button.

Just add some CSS to hide your real reset button.

input[type=reset] { visibility:hidden; height:0; padding:0;}

And then on your link you add as follows

<a href="javascript:{}" onclick="reset.click()">Reset form</a>

<input type="reset" name="reset" id="reset" /><!--This input button is hidden-->

Hope this helps! A.

link|improve this answer
feedback

I'm using Paolo Bergantino solution which is great but with few tweaks... Specifically to work with the form name instead an id.

For example:

function jqResetForm(form){
   $(':input','form[name='+form+']')
   .not(':button, :submit, :reset, :hidden')
   .val('')
   .removeAttr('checked')
   .removeAttr('selected');
}

Now when I want to use it a could do

<span class="button" onclick="jqResetForm('formName')">Reset</span>

As you see, this work with any form, and because I'm using a css style to create the button the page will not refresh when clicked. Once again thanks Paolo for your input. The only problem is if I have defaults values in the form.

link|improve this answer
feedback

I used the solution below and it worked for me (mixing traditional javascript with jQuery)

$("#myformId").submit(function() {
    comand="window.document."+$(this).attr('name')+".reset()";
    setTimeout("eval(comando)",4000);
})
link|improve this answer
feedback

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|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.