-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
27 lines (23 loc) · 840 Bytes
/
script.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
27
const btnEnvio = document.getElementById('enviarCorreo');
btnEnvio.addEventListener('click', function(e) {
e.preventDefault();
const nombre = document.getElementById('nombre').value;
const correo = document.getElementById('correo').value;
const mensaje = document.getElementById('mensaje').value;
window.location.href = 'mailto:julianvargastrb@gmail.com' + correo + '?subject=' + nombre + '&body=' + mensaje;
})
function menuResponsive() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
const menu = document.getElementById("myTopnav");
// Quitar menu con addEventListener "blur"
menu.addEventListener("blur", (menu) =>{
menu.preventDefault();
menu.className === "topnav"
console.log("Blur?")
})