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;
}