views:

73

answers:

1

In the old GA.js I was doing this:

<script type="text/javascript">
  pageTracker._trackPageview("/Page/About_Us/");
</script>

What is the equivalent using the asynchronous analytics code?

A: 

Found answer -- first turn off the gaq.push that does a _trackPageview in the default async script then use this

<script type="text/javascript">
//<![CDATA[
_gaq.push(['_trackPageview', '/whatever/you/need']);
//]]>
</script>
davidosomething