Go Back   CodingForums.com > :: Client side development > JavaScript programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 07-27-2006, 09:43 PM   PM User | #1
urgido
Regular Coder

 
Join Date: Aug 2005
Posts: 257
Thanks: 8
Thanked 0 Times in 0 Posts
urgido is an unknown quantity at this point
clear all input, checkbox or radio in form

Can somebody give me an exaple for a functio that clear all fields, radio buttoms, checkbox in one form?


Best Regards
urgido is offline   Reply With Quote
Old 07-27-2006, 10:12 PM   PM User | #2
vwphillips
Senior Coder

 
Join Date: Mar 2005
Location: Portsmouth UK
Posts: 4,382
Thanks: 3
Thanked 466 Times in 453 Posts
vwphillips is a jewel in the roughvwphillips is a jewel in the roughvwphillips is a jewel in the rough
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>
  <title></title>
<script language="JavaScript" type="text/javascript">
/*<![CDATA[*/

function ResetIPs(){
// document.fred.reset(); // this line for all form elements

// these lines for specified elements
 var args=ResetIPs.arguments;
 for (var zxc0=0;zxc0<args.length;zxc0++){
  var fld=document.getElementsByName(args[zxc0]);
  for (var zxc0a=0;zxc0a<fld.length;zxc0a++){
   if (fld[zxc0a].type=='text'){ fld[zxc0a].value=''; }
   if (fld[zxc0a].type=='radio'||fld[zxc0a].type=='radio'){ fld[zxc0a].checked=false; }
  }
 }
}

/*]]>*/
</script>
</head>

<body onload=ResetIPs('n1','n2','n4','n5')>
<form name="fred" >
<input name="n1" />
<input name="n2" />
<input name="n3" />
<input name="n4" />
<input type="radio" name="n5"  />
<input type="radio" name="n5"  />
</form>
</body>

</html>
__________________
Vic

God Loves You and will never love you less.

http://www.vicsjavascripts.org.uk/

If my post has been useful please donate to http://www.operationsmile.org.uk/
vwphillips is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 03:40 AM.


Advertisement
Log in to turn off these ads.