What is the difference between the two? I have an Ajax heavy site and I’m not sure which one would be more appropriate to use for tracking requests.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Event tracking is most suitable for tracking events in an application that don’t necessarily cross page boundaries, such as actions implemented as Ajax calls.
Page level custom variables can be used to record user interactions, however the number of page level custom variables is limited to 5 per page. All custom variables must be defined before _trackPageview() has been called. I find session and visitor level custom variables more useful for recording extra information about a visitor such as demographics or anonymous vs logged in visits, which you can use to segment visitors.