Como es posible hacerlo; pues de la forma en que lo realizo me sale undefined.
¿alguna sugerencia?, de ante mano se agradece respuestas.
Código HTML:
<html> <head> </head> <body> form name="ingrut" id="ingrut" method="post" action="#"> <input name="orden" type="radio" value="1" checked />Fecha de Vencimiento<br> <input name="orden" type="radio" value="2"/>Fecha de Emision<br> <input type=button value=Procesar id=procesar onclick="Procesar()"> </form> </body> </html> <scritp> function Procesar() { //Recuperar valor orden orden = ingrut.orden.value; alert(orden); //aparece como [B]undefined[/B] } </script>