-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3bfa9f9
commit aab22ce
Showing
3 changed files
with
254 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// Show the pop-up automatically when the page loads | ||
window.onload = function() { | ||
document.getElementById('popup-nl').style.display = 'flex'; | ||
}; | ||
|
||
|
||
// 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')) { | ||
// document.getElementById('popup').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').style.display = 'none'; | ||
} | ||
}); | ||
|
||
|
||
// Handle "No thanks" link | ||
document.querySelector('.no-thanks-nl').addEventListener('click', function(event) { | ||
event.preventDefault(); | ||
document.getElementById('popup-nl').style.display = 'none'; | ||
}); | ||
|
||
|
||
|