beyonk-group / gdpr-cookie-consent-banner

A GDPR compliant cookie consent banner implementation
MIT License
248 stars 42 forks source link

HTML / Web Components addEventListener can't work #64

Open darrenli912 opened 5 months ago

darrenli912 commented 5 months ago

EventListener can't work in HTML / Web Comments. No event is dispatched.

<script>
  document.getElementsByTagName('cookie-consent-banner')[0].addEventListener('analytics', () => {
    // some fathom analytics tracking code or similar
  })

  // We also emit these events on `window`
  window.addEventListener('consent:analytics', () => {
    // some fathom analytics tracking code or similar
  })
</script>