Hi!
I use google analytics to track viewed content on my site using tags like this…
getURL("javascript:pageTracker._trackPageview('/MAIN/WORK/SEARCH-ENTER.html');");
Im wondering how i can however track search queries using a similar method.
Conceptually, im looking for a way to do this
getURL("javascript:pageTracker._trackPageview('/SEARCH-ENTER-"+search_fields.query_txt.text"'.html');");
This tag is located within the portion of the search function where the query text is checked against the XML file. Is there a way to create a new pageview for each search thats entered?
Any help on this would be really appreciated… Thanks everyone