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
hep hep, despite the age of this question i've added a new answer that actually resets arbitrary parts of a form... stackoverflow.com/questions/680241/… – kritzikratzi May 14 at 20:38
feedback

19 Answers

up vote 281 down vote accepted

updated on March 2012.

So, two years after I originally answered this question I come back to see that it has pretty much turned into a big mess. I feel it's about time I come back to it and make my answer truly correct since it is the most upvoted + accepted.

For the record, Titi's answer is wrong as it is not what the original poster asked for - it is correct that it is possible to reset a form using the native reset() method, but this question is trying to clear a form off of remembered values that would remain in the form if you reset it this way. This is why a "manual" reset is needed. I assume most people ended up in this question from a Google search and are truly looking for the reset() method, but it does not work for the specific case the OP is talking about.

My original answer was this:

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

Which might work for a lot of cases, including for the OP, but as pointed out in the comments and in other answers, will clear radio/checkbox elements from any value attributes.

A more correct answer (but not perfect) is:

function resetForm($form) {
    $form.find('input:text, input:password, input:file, select').val('');
    $form.find('input:radio, input:checkbox')
         .removeAttr('checked').removeAttr('selected');
}

// to call, use:
resetForm($('#myform')); // by id, recommended
resetForm($('form[name=myName]')); // by name

Using the :text, :radio, etc. selectors by themselves is considered bad practice by jQuery as they end up evaluating to *:text which makes it take much longer than it should. I do prefer the whitelist approach and wish I had used it in my original answer. Anyhow, by specifying the input part of the selector, plus the cache of the form element, this should make it the best performing answer here.

This answer might still have some flaws if people's default for select elements is not an option that has a blank value, but it is certainly as generic as it is going to get and this would need to be handled on a case-by-case basis.

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
1  
A problem here is that .val('') resets all values to '' even if these values are used in radio buttons and checkboxes. So when i run the above code i lose valuable information from the form, not just what the user has input. – jeffery_the_wind Mar 21 at 16:09
show 18 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
4  
thanks, this is a great way to clear a form containing: input type="file". – neoneye Mar 18 '10 at 8:16
34  
+1 Most reliable and best-performing answer here. – Liam May 28 '10 at 14:58
13  
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.
$('INPUT:text, INPUT:password, INPUT:file, SELECT, TEXTAREA', '#myFormId').val('');  
// De-select any checkboxes, radios and drop-down menus
$('INPUT:checkbox, INPUT:radio', '#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
1  
$(':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
I have updated my answer to address all this, yours is mostly correct aside from the fact jQuery strongly discourages using :text, :password, etc. selectors by themselves without specifying the input part, otherwise it evaluates to *:text which goes through every element in the document instead of just <input> tags with input:text – Paolo Bergantino Mar 21 at 17:01
@paolo-bergantino Your criticism is incorrect. My examples are scoping the elements to inspect using the #myFormId context passed as the second argument to $() - that is $(':input', '#context') - this is identical to $('#context').filter(':input') – powers1 Apr 10 at 19:22
show 2 more comments
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

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 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
Works well, thanks....:) – Sangram Anand May 7 at 2:53
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

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
<script type="text/javascript">
$("#edit_name").val('default value');
$("#edit_url").val('default value');
$("#edit_priority").val('default value');
$("#edit_description").val('default value');
$("#edit_icon_url option:selected").removeAttr("selected");
</script>
link|improve this answer
feedback

basically none of the provided solutions makes me happy. as pointed out by a few people they empty the form instead of resetting it.

however, there are a few javascript properties that help out:

  • defaultValue for text fields
  • defaultChecked for checkboxes and radio buttons
  • defaultSelected for select options

these store the value that a field had when the page was loaded.

writing a jQuery plugin is now trivial: (for the impatient... here's a demo http://jsfiddle.net/kritzikratzi/N8fEF/1/)

plugin-code

(function( $ ){
    $.fn.resetValue = function() {  
        return this.each(function() {
            var $this = $(this); 
            var node = this.nodeName.toLowerCase(); 
            var type = $this.attr( "type" ); 

            if( node == "input" && ( type == "text" || type == "password" ) ){
                this.value = this.defaultValue; 
            }
            else if( node == "input" && ( type == "radio" || type == "checkbox" ) ){
                this.checked = this.defaultChecked; 
            }
            else if( node == "input" && ( type == "button" || type == "submit" || type="reset" ) ){ 
                // we really don't care 
            }
            else if( node == "select" ){
                this.selectedIndex = $this.find( "option" ).filter( function(){
                    return this.defaultSelected == true; 
                } ).index();
            }
            else if( node == "textarea" ){
                this.value = this.defaultValue; 
            }
            // not good... unknown element, guess around
            else if( this.hasOwnProperty( "defaultValue" ) ){
                this.value = this.defaultValue; 
            }
            else{
                // panic! must be some html5 crazyness
            }
        });
    }
} )(jQuery);

usage

// reset a bunch of fields
$( "#input1, #input2, #select1" ).resetValue(); 

// reset a group of radio buttons
$( "input[name=myRadioGroup]" ).resetValue(); 

// reset all fields in a certain container
$( "#someContainer :input" ).resetValue(); 

// reset all fields
$( ":input" ).resetValue(); 

// note that resetting all fields is better with the javascript-builtin command: 
$( "#myForm" ).get(0).reset(); 

some notes ...

  • i have not looked into the new html5 form elements, some might need special treatment but the same idea should work.
  • elements need to be referenced directly. i.e. $( "#container" ).resetValue() won't work. always use $( "#container :input" ) instead.
  • as mentioned above, here is a demo: http://jsfiddle.net/kritzikratzi/N8fEF/1/
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.