Happy New Year! We made it, and I can’t believe the Jayhawks won the Orange Bowl!
Been working a lot lately trying to pass Google Analytics cookie data between URLs and have now got it figured out. We have to pass the info between URLs because we need a central secure place to process user data. Anyway, for posterity here’s what works:
_utmLinker that functions with an image link: |
<script type=”text/javascript”> <noscript> |
_utmLinker that functions with a text link |
<script type=”text/javascript”> <noscript> |
Required modification to the GA Tracking Code |
<script src=”http://www.google-analytics.com/urchin.js” type=”text/javascript”> <script> |
Input the information into a hidden field so that a submit function on a form will pass the information off as well: |
<form xid=”form” method=”post” onsubmit=”__utmLinkPost(this);” |
… and that’s how you do that!