Todo me va bien salvo el ultimo alert (observaciones) que no me funciona no tengo ni idea del porque:
<script Language="JavaScript" Type="text/javascript"><!--
function FrontPage_Form1_Validator(theForm)
{
if (theForm.hito.value == "")
{
alert("Escriba un valor para el campo Hito.");
theForm.hito.focus();
return (false);}
if (theForm.tareas.value == "")
{
alert("Escriba un valor para el campo Tareas.");
theForm.tareas.focus();
return (false);}
if (theForm.inicio.value.length < 5)
{
alert("Escriba un valor correcto para el campo Inicio");
theForm.inicio.focus();
return (false);}
if (theForm.observaciones.value == "")
{
alert("Escriba un valor para el campo Observaciones.");
theForm.observaciones.focus();
return (false);}
return (true);
}
</script>
El input de observaciones es :
<INPUT NAME="observaciones" TYPE="TEXT" class="Estilo21">
Estoy cansado de mirarlo y no veo el problema todos me funcionan salvo el campo observaciones, muchas gracias!!