Book a Demo

  • Learn more about DataOS
  • Discuss targeted use cases that align with your needs
  • See how you can reduce costs and gain valuable ROI

Think Data Products. Think DataOS

Think Modern.

if (!emailInput) return; emailInput.addEventListener('input', function () { const email = emailInput.value.toLowerCase(); const domain = email.split('@')[1]; const isBanned = bannedDomains.some(banned => domain === banned || domain?.endsWith('.' + banned) ); if (isBanned) { emailInput.setCustomValidity("Please enter a valid business email address"); } else { emailInput.setCustomValidity(''); } }); } });