Hi Guys,
So I have a simple page and when a user clicks on a link an iframe opens. I am trying to use the
http://www.google.com/support/analytics/bin/answer.py?hl=en&answer=55527
pageTracker._trackPageview('/outgoing/example.com');
Inside the iframe - but it seems that its not working ? I have read this page
code.google.com/apis/analytics/docs/tracking/gaTrackingSite.html#trackingIFrames
And it seems that I use the "iframe.src = pageTracker._getLinkerUrl" to pass some cookie info to the iframe - the problem is that I want to track stuff INSIDE the iframe (i.e. such as events etc) and I get a "pageTracker is undefined" error.
Do I need to include something like
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
inside the iFrame - to get the pageTracker to work. I take it that the "Publisher UA-XXXXX-X" ID will be passed via cookies and everything will work?
Any ideas