Ver Mensaje Individual
  #7 (permalink)  
Antiguo 13/11/2006, 04:06
Avatar de caricatos
caricatos
Moderador
 
Fecha de Ingreso: abril-2002
Ubicación: Torremolinos (Málaga)
Mensajes: 19.607
Antigüedad: 22 años, 9 meses
Puntos: 1284
Hola:

Te paso un ejemplo de Validación que quizás te sirva:

Código:
<html>
<head>
<title>prueba</title>
<script type="text/javascript">
function Validar(f) {
if (f.nombre.value == "")	{
	alert("Por favor ingrese su nombre y apellidos");
	f.nombre.focus();
	return false
}
if (f.email.value.indexOf('@') == -1 || f.email.value.indexOf('.') == -1)	{
	alert("Por favor ingrese su email ");
	f.email.focus();
	return false
}

return true;
}
</script>
</head>
<body >
<form onsubmit="return Validar(this)" target="_blank" method="get" action="prueba.html">
<input type="text" name="nombre" />
<input type="text" name="email" />
<button type="submit" >enviar</button>
</form>
</body>
</html>
Saludos
__________________
Por favor:
No hagan preguntas de temas de foros en mensajes privados... no las respondo