Hola
karl0x
Prueba este código:
Código PHP:
<html>
<head>
<script type="text/javascript">
function ver(obj) {
for (i=0; ele=document.getElementsByName('rad')[i]; i++)
if (ele==obj) alert(i);
}
</script>
</head>
<body>
<input type="radio" name="rad" onclick="ver(this)" />
<input type="radio" name="rad" onclick="ver(this)" />
<input type="radio" name="rad" onclick="ver(this)" />
</body>
</html>
Saludos,