
19/05/2006, 05:44
|
 | | | Fecha de Ingreso: noviembre-2004 Ubicación: Santa Fe (Argentina) Colon F.C
Mensajes: 1.362
Antigüedad: 20 años, 3 meses Puntos: 6 | |
Solucion hola bue yo lo hago asi y me anda muy bien (asi te tendrá ke funcionar si o si ejej
Código:
check = contacto.terminos;
selected = false // Inicialmente en false
//Recorremos todos los checkbox buscando que haya alguno marcado
x=0
while (!selected && (x <check.length)) {
if (check[x].checked) {
selected = true;
}
x++;
}
if (!selected) {
alert("Tenes que tildar en terminos y condiciones");
return false;
}
__________________ LA MUERTE ESTÁ TAN SEGURA DE VENCER QUE NOS DA TODA UNA VIDA DE VENTAJA |