Ver Mensaje Individual
  #13 (permalink)  
Antiguo 10/01/2006, 14:00
Veronicalismar
 
Fecha de Ingreso: diciembre-2005
Mensajes: 131
Antigüedad: 19 años, 1 mes
Puntos: 0
Perdon

porque este segundo que obliga a llenar el campo, esta dentro de esta funcion como hago poner que me valide las dos opciones de llenado obligatorio y sin espacios en blanco


function validar(formulario)
{

//-->VALIDA TELEFONO 2

if (formulario.telefono2.value.length < 2)
{
alert("Introduzca un Telefono Celular\"Telefono Celular\".");
formulario.telefono2.focus();
return (false);
}

var checkOK = ".0123456789 ";
var checkStr = formulario.telefono2.value;
var allValid = true;
for (i = 0; i < checkStr.length; i++)
{
ch = checkStr.charAt(i);
for (j = 0; j < checkOK.length; j++)
if (ch == checkOK.charAt(j))
break;
if (j == checkOK.length)
{
allValid = false;
break;
}
}
if (!allValid)
{
alert("Escriba sólo caracteres (0123456789)en el campo \"Telefono Celular\".");
formulario.telefono2.focus();
return (false);
}

return (true);
}