[thelist] Deselecting A Radio Box

Joe Lance JoeL at HUMBOLDTBANK.COM
Thu Jan 23 11:57:02 CST 2003


Here is a simple javascript to deselect a radiobox

<script>
function check(button) {
 if (button.checked)
    button.checked=false

}
</script>

<form>
   <input name="radio1" type="radio" value="">
   <input type="button" value="" onClick=check(radio1)>
</form>

-----Original Message-----
From: Gregory J Toland [mailto:gtoland at xwaresys.com]
Sent: Thursday, January 23, 2003 9:40 AM
To: User Group, The List
Cc: 'Gregory J Toland'
Subject: [thelist] Deselecting A Radio Box


--
[ Picked text/plain from multipart/alternative ]
Is there a way to deselect a radio box?  Once a user selects a radio box
(lets say there are 3 radio boxes) how can the user deselect the box so
that no one box is selected?

Gregory J Toland
Sr. Systems Architect
CHM Inc.
(301) 899-2601 X317 (Office)
(703) 655-5766 (Mobile)
gtoland at chm.net

--
* * Please support the community that supports you.  * *
http://evolt.org/help_support_evolt/

For unsubscribe and other options, including the Tip Harvester
and archives of thelist go to: http://lists.evolt.org
Workers of the Web, evolt !



More information about the thelist mailing list