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>