Tracking a page in an Ajax Popover from Google Analytics - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T23:28:50Z http://stackoverflow.com/feeds/question/655093 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/655093/tracking-a-page-in-an-ajax-popover-from-google-analytics 0 Tracking a page in an Ajax Popover from Google Analytics leeand00 2009-03-17T16:50:27Z 2009-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#655159 1 Answer by andi for Tracking a page in an Ajax Popover from Google Analytics andi 2009-03-17T17:05:29Z 2009-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>&lt;script type="text/javascript"&gt; 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")); &lt;/script&gt; &lt;script type="text/javascript"&gt; try { var pageTracker = _gat._getTracker("#########"); } catch(err) {} &lt;/script&gt; </code></pre> <p>and the other just before the "end body" tag</p> <pre><code>&lt;script&gt; pageTracker._trackPageview(); &lt;/script&gt; </code></pre> <p>And the call the <strong>pageTracker._trackPageview();</strong> method in the <em>ajaxComplete</em> callback of the "pop-up" window.</p>