Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/07/2009, 15:19
easy
 
Fecha de Ingreso: diciembre-2008
Mensajes: 454
Antigüedad: 16 años, 1 mes
Puntos: 2
Respuesta: validar email ???

Ya l tengo, por si a alguine le interesa:

Código HTML:
<script type="text/JavaScript">
<!--
function pregunta(valor){
    //valido el nombre
    if (document.contacto.nombre.value.length==0){
       alert("Por favor ingrese su Nombre completo")
       document.contacto.nombre.focus()
       return false;
    }
    //valido el email
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(valor)){
	return (true)
	} else {
	alert("La dirección de email es incorrecta.");
	return (false);
}
	return alert('Gracias por contactarnos');
}
//-->
</script>

<form name="contacto" action="" method="post">
Nombre:
<br />
<input type="text" name="nombre" />
<br />
Email:
<br />
<input type="text" name="email" />
<br />
Mensaje:
<br />
<textarea name="mensaje" cols="45" rows="5"></textarea>
<input type="submit" name="submit" value="Enviar" onclick="return pregunta(this.form.email.value)" />
</form> 
Gracias a todos