Ver Mensaje Individual
  #1 (permalink)  
Antiguo 11/06/2006, 14:38
NTrance
 
Fecha de Ingreso: mayo-2003
Mensajes: 148
Antigüedad: 21 años, 6 meses
Puntos: 0
Porque no funciona?

Tengo el siguiente script pero no me funciona, no hace nada al pulsar en el boton contar. :( Alguien me ayuda. Gracias!

<html>
<head><title>Prueba</title></head>
<body>
<script>

function contar(){

var checkboxes = form1.checkbox;

for (var x=0; x < checkboxes.length; x++) {
if (checkboxes[x].checked) {
cont = cont + 1;
}
}

alert "El Total es:"+ cont;

}

</script>

<form name="form1" method="POST">

<input type="checkbox" name="checkbox" value="checkbox"> CheckBox 1
<input type="checkbox" name="checkbox" value="checkbox"> CheckBox 2

<input type="button" name="Submit" value="Contar" onClick="contar();">

</form>

</body>
</html>