Tracking a page in an Ajax Popover from Google Analytics - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T23:28:50Zhttp://stackoverflow.com/feeds/question/655093http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/655093/tracking-a-page-in-an-ajax-popover-from-google-analytics0Tracking a page in an Ajax Popover from Google Analyticsleeand002009-03-17T16:50:27Z2009-03-17T17:05:29Z
<p>I am looking to track a Pop-Over page that appears when the forum is
submitted at:</p>
<p><a href="http://www.xebra.com/salesAssistance.html" rel="nofollow">http://www.xebra.com/salesAssistance.html</a></p>
<p>I tried adding the urchin/google analytics code to the page that is displayed in the pop-over window, but whenever I do so the status bar displays "Read <a href="http://www.google-analytics.com/" rel="nofollow">http://www.google-analytics.com/</a>" and the entire form page goes blank.</p>
<p>It is important to track the page in the popover because that page is the conversion goal (the page we are trying to direct people to).</p>
<p>How do I stop Google Analytics from destroying my window, while still tracking that a user has been there?
<br/><br/><br/>
Thank you,<br/>
Andrew J. Leer</p>
http://stackoverflow.com/questions/655093/tracking-a-page-in-an-ajax-popover-from-google-analytics/655159#6551591Answer by andi for Tracking a page in an Ajax Popover from Google Analyticsandi2009-03-17T17:05:29Z2009-03-17T17:05:29Z<p>You could separate your google analytics code into two bits:</p>
<p>one that goes on top of the page:</p>
<pre><code><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>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("#########");
} catch(err) {}
</script>
</code></pre>
<p>and the other just before the "end body" tag</p>
<pre><code><script>
pageTracker._trackPageview();
</script>
</code></pre>
<p>And the call the <strong>pageTracker._trackPageview();</strong> method in the <em>ajaxComplete</em> callback of the "pop-up" window.</p>