> For the complete documentation index, see [llms.txt](https://docs.iheartjane.com/jane-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.iheartjane.com/jane-docs/embeds/ga-referrer-script.md).

# GA Referrer Script

```javascript
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id={UA-Code}"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', '{UA-Code}');
	var frameWindow;
    var foundIframe = setInterval(function () {
      frameWindow = document.getElementById('jane-menu');
      if (frameWindow) {
        frameWindow = frameWindow.contentWindow;
        gtag('get', '{UA-Code}', 'client_id', function (clientId) {
          frameWindow.postMessage(
            {
              messageType: 'initializeGa',
              payload: {
                clientId: clientId,
                referrer: document.referrer
              }
            },
            'https://www.iheartjane.com'
          );
          clearInterval(foundIframe);
        });
      }
    }, 1000);
</script>
```
