-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
45 lines (36 loc) · 1.2 KB
/
index.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
document.addEventListener('DOMContentLoaded', function ()
{
const formulario = document.querySelector('form');
formulario.addEventListener('submit', function (evento)
{
const nombre = document.getElementById('nombre').value.trim();
const apellido = document.getElementById('apellido').value.trim();
const email = document.getElementById('email').value.trim();
const comentario = document.getElementById('comentario').value.trim();
const direccion = document.getElementById('direccion').value.trim();
if (!nombre || !apellido || !email || !comentario)
{
evento.preventDefault();
alert('Uno o más campos requeridos no fueron completados. Complételos antes de enviar el formulario');
}
});
});
/** js para menu responsive al usar la web en celulares */
let showMenu = false;
function toggleMenu()
{
if (showMenu)
{
document.getElementById("nav").classList = "";
showMenu = false;
} else
{
document.getElementById("nav").classList = "responsive";
showMenu = true;
}
}
function closeMenu()
{
document.getElementById("nav").classList = "";
showMenu = false;
}