Ver Mensaje Individual
  #1 (permalink)  
Antiguo 22/12/2006, 06:05
hema
 
Fecha de Ingreso: enero-2006
Mensajes: 208
Antigüedad: 19 años
Puntos: 3
validacion de formulario no funciona

estoy desarrollando el código para validar formulario. Pero tengo problemas...(es que soy nueva con javascript). Si no relleno el campo nombre me sale la ventana de alerta pero con el del apellido no funciona....¿Que he escrito mal?

function validate_form ( )
{
valid = true;

if (document.myForm.Nombre.value == "" )
{
alert ( "Please fill in the 'Your Name' box." );
valid = false;
}

return valid;



valid = true;

if (document.MyForm.Apellido.value == "" )
{
alert ( "Please fill in the 'Your Name' box." );
valid = false;
}

return valid;
}