|
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>
|
|
|
Copyright © 1996-2008 irt.org, All Rights Reserved.