Cita:
Iniciado por maycolalvarez ajá, ¿y de dónde obtienes la variable/objeto inicio?, la forma correcta de obtenerlo es:
document.forms['inicio']
y el objeto option:
document.forms['inicio'].elements['option']
en cambio, si usas el atributo ID puedes usar la función: document.getElementById('id_element')
PD: recomiendo cambiar el nombre de option por otro como myoption
a ver... o sea que quede asi:
Código PHP:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Azist eCards Service</title>
<link href="styles.css" rel="stylesheet" type="text/css" id="estilo" />
<script language="javascript" type="text/javascript" src="funciones.js"></script>
</head>
<body>
<div id="contenedor_form">
<form action="" method="post" name="inicio">
<h1>eCard template </h1> <br />
Please choose if you want one of the pre-designed eCards or a personalized one <br /><br />
<input name="myoption" type="radio" value="0" /> Pre-designed<br />
<input name="myoption" type="radio" value="1" /> Personalized<br />
<hr/>
<p class="centrar_boton"><input name="submit" type="button" value="Click to continue" onclick="validar(this.document.inicio)" /></p>
</form>
</div>
</body>
</html>
y en el JS no entiendo como quedaria.
asi?
Código PHP:
document.forms['inicio'].elements['myoption'].checked
donde pongo el [i] ???
no entiendo