Home Articles FAQs XREF Games Software Instant Books About Feedback Search Site-Map
irt.org logo

Q1729 How can I uncheck all radio boxes within a group of radio boxes?

irt.org | Knowledge Base | JavaScript | Form | Q1729 [ previous next ]

Q1729 How can I uncheck all radio boxes within a group of radio boxes?

Try:

<html>

<body>

<form name="radioForm">

<input type="radio" name="test" value="daily" checked>
<br>
<input type="radio" name="test" value="monthly">
<br>
<input type="radio" name="test" value="quarterly">
</table>

</form>

<script language="JavaScript"><!--
for (var i=0; i<document.radioForm.test.length; i++)
  document.radioForm.test[i].checked = false;
//--></script>

</body>

</html>

Provide feedback ...
AddThis Social Bookmark Button

Provide feedback ... AddThis Social Bookmark Button


Last Updated: 30th March 2008. Maintained by: Martin Webb and Michel Plungjan
irt.org liability, trademark, document use, privacy statement and software licensing rules apply.
Copyright © 1996-2008 irt.org, All Rights Reserved.