vote up 1 vote down star

Hello all,

I have a simple form, lets say it takes an email address. Once the form is submitted a message stack notifies the user that their address has been submitted successfully. The issue is that after submitting the address the form field with the email still contains the email address that the user typed in, how would I reset this field? Would I have to use JavaScript for this?

Thank you

flag

63% accept rate

2 Answers

vote up 4 vote down
window.onload = function () {
    for(var f in document.getElementsByTagName("form"))
        f.reset();
}

This would certainly work, assuming you don't have another onload event already set. If you do, just add the inner bit (lines 2 and 3) to it. And of course this is standard JavaScript, it'll work no matter the framework.

link|flag
vote up 0 vote down
$(':input','#myform')
 .not(':button, :submit, :reset, :hidden')
 .val('')
 .removeAttr('checked')
 .removeAttr('selected');

from this question:
http://stackoverflow.com/questions/680241/reset-form-with-jquery

Requires jQuery: http://jquery.com

link|flag
Do this in the onload function. And of course, this code is only applicable if using jQuery. YMMV. – Ricket Aug 5 at 0:01
What about the preselected checked items that some forms have? Also this doesn't include text areas... – Moak Aug 5 at 3:57
Wrong sir: See the :input on jquery's documentation: docs.jquery.com/Selectors. It match textareas. – Chacha102 Aug 5 at 4:07
I will give you that you would need to recheck and select the preselected or prechecked items. – Chacha102 Aug 5 at 4:08

Your Answer

Get an OpenID
or

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