-
Notifications
You must be signed in to change notification settings - Fork 749
/
popup.js
46 lines (41 loc) · 1.53 KB
/
popup.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
46
// Show the pop-up automatically when the page loads
window.onload = function () {
if (!sessionStorage.getItem("popupDisplayed")) {
document.getElementById("popup-nl").style.display = "flex";
sessionStorage.setItem("popupDisplayed", "true"); // Set flag to indicate popup has been shown
}
};
// Close the pop-up when the user clicks the close button
document.querySelector(".close-nl").addEventListener("click", function () {
document.getElementById("popup-nl").style.display = "none";
});
// Close the pop-up when clicking outside the pop-up content
window.addEventListener("click", function (event) {
const popupContent = document.querySelector(".popup-content"); // Select the popup content
if (
event.target === document.getElementById("popup-nl") &&
!popupContent.contains(event.target)
) {
document.getElementById("popup-nl").style.display = "none";
}
});
// Handle form submission
document
.getElementById("emailForm-nl")
.addEventListener("submit", function (event) {
event.preventDefault();
const email = document.getElementById("email-nl").value;
if (email) {
alert(
`Your email ID ${email} has been registered successfully for the newsletter.`
);
document.getElementById("popup-nl").style.display = "none"; // Close popup after successful submission
}
});
// Handle "No thanks" link
document
.querySelector(".no-thanks-nl")
.addEventListener("click", function (event) {
event.preventDefault();
document.getElementById("popup-nl").style.display = "none";
});