-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #679 from Riyachauhan11/main
fixing button display issues and vote popup
- Loading branch information
Showing
2 changed files
with
53 additions
and
36 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
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 |
---|---|---|
@@ -1,39 +1,45 @@ | ||
// Show the pop-up automatically when the page loads | ||
window.onload = function() { | ||
document.getElementById('popup-nl').style.display = 'flex'; | ||
}; | ||
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 the user clicks the close button | ||
document.querySelector(".close-nl").addEventListener("click", function () { | ||
document.getElementById("popup-nl").style.display = "none"; | ||
}); | ||
|
||
if (localStorage.getItem("noThanksClicked") === "true") { | ||
document.getElementById('popup-nl').style.visibility = 'hidden'; | ||
} | ||
if (localStorage.getItem("noThanksClicked") === "true") { | ||
document.getElementById("popup-nl").style.visibility = "hidden"; | ||
} | ||
|
||
// // 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'; | ||
// } | ||
// }); | ||
// // 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) { | ||
// Handle form submission | ||
document | ||
.getElementById("emailForm-nl") | ||
.addEventListener("submit", function (event) { | ||
event.preventDefault(); | ||
|
||
const email = document.getElementById('email-nl').value; | ||
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'; | ||
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) { | ||
// Handle "No thanks" link | ||
document | ||
.querySelector(".no-thanks-nl") | ||
.addEventListener("click", function (event) { | ||
event.preventDefault(); | ||
document.getElementById('popup-nl').style.display = 'none'; | ||
document.getElementById("popup-nl").style.display = "none"; | ||
localStorage.setItem("noThanksClicked", "true"); | ||
}); |