-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmensaje.js
26 lines (25 loc) · 1.19 KB
/
mensaje.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
///////Mensaje de contacto
function mensaje() {
var nombre = document.getElementById("nombre").value;
var apellido = document.getElementById("apellido").value;
var email = document.getElementById("email").value;
if (nombre != "") {
if (apellido != "") {
if (email != "") {
if (/^(([^<>()[\]\.,;:\s@\"]+(\.[^<>()[\]\.,;:\s@\"]+)*)|(\".+\"))@(([^<>()[\]\.,;:\s@\"]+\.)+[^<>()[\]\.,;:\s@\"]{2,})$/i.test(email)){
alert("CONTACTO\n" + nombre + " " +apellido + " ha enviado un mensaje de contacto.\nEmail: " + email);
document.getElementById("nombre").value = "";
document.getElementById("apellido").value = "";
document.getElementById("email").value = "";
document.getElementById("empresa").value = "";
document.getElementById("telefono").value = "";
} else {
alert("La dirección de email es incorrecta.");
}
}
}
}
}
//Evento del botón ENVIAR
var boton = document.getElementById('boton-enviar');
boton.addEventListener("click", mensaje);