CardinalPath / gas

Google Analytics on Steroids. A Google Analytics implementation with more power features.
Other
593 stars 78 forks source link

Trying to track same page anchor links #48

Closed kelicia closed 10 years ago

kelicia commented 11 years ago

Can I use _gas.push(['_trackPageview', location.pathname + location.search + location.hash]); like _gaq.push(['_trackPageview', location.pathname + location.search + location.hash]);

or is there a better way to track anchor links with GAS?

tomfuertes commented 10 years ago

Once _gas gets done with any of the pushes it sends them to _gaq.

So yes, this works.

kelicia commented 10 years ago

Thanks!