Ver Mensaje Individual
  #1 (permalink)  
Antiguo 28/04/2010, 14:23
wilmer994
 
Fecha de Ingreso: noviembre-2007
Mensajes: 14
Antigüedad: 17 años, 1 mes
Puntos: 0
validacion de checkbox

amigos tengo una pregunta tengo el siguiente codigo de una función:
function validarcampos()
{
var idcheck = document.getElementById('mycheck');
if (!(idcheck.checked)) {
alert("Debes aceptar los terminos del contrato");
return false;
}else{
return true;
}
}
y en el formulario lo invoco asi
<FORM ACTION="pagosonline.php" method="post" name="input" id="formulario" onsubmit=return validarcampos();>

pero no me valida el checkbox, alguien sabe que pasa?