Reputation: 33956
All my dynamic pages use a #!
hashtag.
Does google analytics offer any kind of reporting on dynamic content?
Upvotes: 0
Views: 425
Reputation: 39872
You can tell GA to register a url. So just use this in combination with window.location
whenever you make an AJAX call.
_gaq.push(['_trackPageview', '/some-page']);
You may find the GA API useful for questions like this.
Upvotes: 1