/* Add your CSS styles here */ .hidden { display: none; } // Function to check if the URL parameter 'referred' is set to 'true' function isReferred() { const urlParams = new URLSearchParams(window.location.search); return urlParams.get('referred') === 'true'; } // Event listener for the "Generate Link" element with ID "generate" document.getElementById("generate").addEventListener("click", () => { // Check if 'referred' parameter is set to 'true' in the URL if (isReferred()) { document.getElementById("downloadLink").classList.remove("hidden"); } }); Moviez Office
Showing posts from September, 2022Show all