Ver Mensaje Individual
  #18 (permalink)  
Antiguo 07/03/2003, 11:44
Avatar de tunait
tunait
Moderadora
 
Fecha de Ingreso: agosto-2001
Ubicación: Terok Nor
Mensajes: 16.805
Antigüedad: 23 años, 5 meses
Puntos: 381
hum.. es verdad.

Bueno, no problemo, agrega lo que está en negritas a la función



Código:
function entrada()
{
for(m=0;m<document.forms[0].length;m++)
	{
	if(document.forms[0][m].type=="checkbox")
		{
		if(document.forms[0][m].checked==true)
			{
			cont++
			document.forms[0].enviar.disabled=false
			document.getElementById('aviso').style.visibility='hidden'
			}
		}
	}
}