-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
42 lines (27 loc) · 1004 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
28
29
30
31
32
33
34
35
36
'use strict'
// Modal Popup
const sendBtn = document.querySelector('.send-message')
sendBtn.addEventListener('click', check);
// Modal Close
const closeBtn = document.querySelector('.close-btn')
closeBtn.addEventListener('click', closeModal);
// Modal Visibility
const content = document.getElementById('modal')
function check() {
const name = document.forms["form"]["name"].value;
const cname = document.forms["form"]["companyName"].value;
const tel = document.forms["form"]["tel"].value;
const email = document.querySelector('#email').value;
const mconsent = document.querySelector('#marketingConsent');
// Check email
let regexEmail = /^\w+([\.-]?\ w+)*@\w+([\.-]?\ w+)*(\.\w{2,3})+$/;
if (name && cname && tel && mconsent.checked && email.match(regexEmail)) {
content.style.visibility = 'visible';
}
else {
content.style.visibility = 'hidden';
}
}
function closeModal() {
content.style.visibility = 'hidden';
}