alguien sabe por que no me funciona este codigo estoy tratando de que me muestre si el valor seleccionado es correcto o no el hecho es que no importa que opcion escoja siempre me esta entrando en el mensaje del else me gustaria saber si alguein me puede corregir o ayudar gracias
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
<script>
function validar()
{
with (document.form1)
{
if (respuesta1.value=="84")
{
alert("respuesta correcta")
}
else
{
alert("respuesta incorrecta la respuesta correcta es 64")
}
}
}
</script>
</head>
<body>
<form id="form1" name="preguntas" method="post" action="">
1.-¿Cuantas casillas tien un tablero de ajedrez?
<input type="radio" id="respuesta1" name="respuesta1" value="48" onclick="return validar()"/>a) 48
<input type="radio" id="respuesta1" name="respuesta1" value="64" onclick="return validar()"/>b) 64
<input type="radio" id="respuesta1" name="respuesta1" value="84" onclick="return validar()"/>c) 84 <br /><br />
<!--<input type="submit" name="enviar" value="Enviar respuesta" onclick="return validar()" />-->
</form>
</body>
</html>