{ const emailInput = document.querySelector("input[name='email']"); if (emailInput && emailInput.value === "") { emailInput.value = storedEmail; emailInput.dispatchEvent(new Event("input", { bubbles: true })); console.log("✅ Autofilled HubSpot email field"); } else { console.log("⚠️ Email input not found or already filled"); } // Optional: hide the field document.querySelectorAll(".hs_email").forEach((field) => { field.style.display = "none"; }); }; const observer = new MutationObserver(() => { const emailInput = document.querySelector("input[name='email']"); if (emailInput) { autofillEmail(); observer.disconnect(); } }); observer.observe(document.body, { childList: true, subtree: true }); // Backup in case observer misses it setTimeout(() => { console.log("⏰ Running fallback autofill"); autofillEmail(); }, 800); });

Terms and conditions

Yes, Streaam ApS is allowed to contact me via mail, phone, and electronic mail (including SMS and email) about advice and marketing related to the company's products and services. READ MORE HERE. I also consent to Streaam ApS registering certain data when sending electronic mail. READ MORE HERE. You can withdraw your consent at any time HERE. I also give consent to Streaam ApS processing my information in accordance with Streaam ApS's privacy policy. Read more HERE.