Hi,
Is this what you want?
Code:
function setKeep( elem, groupName, bool )
{
var group = elem.form.elements[groupName],
i = 0,
rb;
while( rb = group[i++] )
{
rb.checked = !(bool == rb.value)
rb.disabled = bool;
}
}//-->
</script>
</head>
<body>
<form action="article.php" name="cpform" method="post">
<-- field 1 -->
<input type="radio" name="confirm" id="rb_1_confirm"
value="1" tabindex="1" checked="checked" onchange="setKeep(this,'keepcomments',0)"
/>Un-validate
<input type="radio" name="confirm" id="rb_0_confirm"
value="0" tabindex="2" onchange="setKeep(this,'keepcomments',1)" />Permenantly Delete
Vinny
Bookmarks