Ver Mensaje Individual
  #5 (permalink)  
Antiguo 15/10/2005, 11:14
Avatar de flaviovich
flaviovich
 
Fecha de Ingreso: agosto-2005
Ubicación: Lima, Peru
Mensajes: 2.951
Antigüedad: 19 años, 3 meses
Puntos: 39
Hola Gaby!
Prueba con esta funcion:
Código:
function chkForm()
{
	var n = 0;
	
	inputs = document.getElementsByTagName("input");

	for (i = 0; i < inputs.length; i++)
	{
		if (inputs[i].type == "checkbox" && inputs[i].checked)
		{
			if (document.forms['formdesp']['rpta1'][i].value != "")
			{
				n = 1;
			}
			else
			{
				alert("Debe ingresar un dato");
			}
			break;
		}
	}
	if (n == 0) alert("Debe seleccionar un checkbox");
	return (n == 1) ? true : false;
}
Ten en cuenta, que se evalua que haya algo en el input.
Y modifica esta linea:
Código HTML:
<form name="formdesp" onSubmit="return chkForm()"> 
Como siempre, fue un gusto ayudarte con lo poco que se.
suerte
__________________
No repitamos temas, usemos el Motor de busquedas
Plantea bien tu problema: Ayúdanos a ayudarte.