Click here to Skip to main content
15,867,704 members
Articles / Web Development / ASP.NET
Alternative
Tip/Trick

Reset all Fields using jQuery

Rate me:
Please Sign up or sign in to vote.
4.93/5 (7 votes)
21 May 2014CPOL 17.3K   4   4
This is an alternative for "Reset all Fields using jQuery"

Introduction

Reseting the form to it’s initial values is one of those things you do often.

Doing this task with jQuery is really easy:
XML
<form id="FormID" name= "FormID" action="#" method="get">
 your input controls here
</form>


//Using single line you can clear all the inputs from the form.
$("#mybutton").click(function(){
   $('#FormID').each (function(){
      this.reset();
   });
});
//OR you may using this code
//reset form 
$("#mybutton").click(function(){
    $("#FormID").find('input:text, input:password, input:file, select, textarea').val('');
    $("#FormID").find('input:radio, input:checkbox').removeAttr('checked').removeAttr('selected');
});

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead Infostretch Ahmedabad-Gujarat
India India
Aspiring for a challenging carrier wherein I can learn, grow, expand and share my existing knowledge in meaningful and coherent way.

sunaSaRa Imdadhusen


AWARDS:

  1. 2nd Best Mobile Article of January 2015
  2. 3rd Best Web Dev Article of May 2014
  3. 2nd Best Asp.Net article of MAY 2011
  4. 1st Best Asp.Net article of SEP 2010


Read More Articles...

Comments and Discussions

 
GeneralMy vote of 5 Pin
Humayun Kabir Mamun21-May-14 19:16
Humayun Kabir Mamun21-May-14 19:16 
GeneralRe: My vote of 5 Pin
Sunasara Imdadhusen21-May-14 19:20
professionalSunasara Imdadhusen21-May-14 19:20 
SuggestionNice effort ! Pin
Jagbir Saini21-May-14 5:16
professionalJagbir Saini21-May-14 5:16 
GeneralRe: Nice effort ! Pin
Sunasara Imdadhusen21-May-14 19:21
professionalSunasara Imdadhusen21-May-14 19:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.