0
votes
1answer
30 views

Google Analytics - Track Event on Page Exit (Except form submission)

I'm using the following code to track when a user exits a page on my site: //track on page exit function storeData(){ _gaq.push(['_trackEvent', 'Application Form', 'exit-form_application_', '', ...
1
vote
1answer
27 views

Push Google Analytics Tracking Event on Section / Image View

I have section on our products pages towards the bottom that shows similar products. Is it possible to use event tracking to track when someone sees them? I am currently doing click tracking on them, ...
0
votes
1answer
195 views

Google Analytics Tracking GA.js vs Analytics.js

I'm trying to use this code to track an event in Google Analytics _trackEvent(category, action, opt_label, opt_value, opt_noninteraction) This seems to be meant to be use with the GA.js ...
1
vote
2answers
93 views

How to trigger submit form using jQuery

I am trying to track comments on blog posts via Google Universal Analytics. I want the label to pick up the name of the blog post so I'm using jQuery to fire the event. So far I have the following ...
0
votes
1answer
20 views

Google Analytics Events Tracking with Echo

I'm trying to track onclick event to track a button on my site but I'm not too familiar with PHP. Here's an example of how the code looks like on my site: <a href="<?php if($clang=='en') { ...
1
vote
2answers
57 views

Google Analytics - Outbound Link Tracking for two accounts

I am successfully tracking pages on my site to report to two Google Analytics accounts, however, I can't get the outbound link tracking to track the events in Google Analytics accounts (it's not ...
2
votes
1answer
171 views

using Javascript within Google Analytics event tracking code to automate category naming

So I'm attempting to implement some google analytics event tracking on dynamically generated pages. I'll be using something like <script> $(document).ready(function(){ ...
0
votes
1answer
90 views

GA Event Tracking Not Working

Can anyone see a problem with the code here for tracking this button? Fixed it from the previous post and still nothing with the new code: <form id="constant-contact-signup2" ...
0
votes
1answer
32 views

Google Analytics: event tracking sitewide but generating unique URLs

I have an online form on my website sitewide and want to use event tracking in Google Analytics in order to see the number of clicks on the submit button. What should I do to make Google Analytics ...
0
votes
1answer
32 views

Google Event Tracking Code Problems [closed]

Can anyone see a problem with the code here for tracking this button? <form id="constant-contact-signup2" action="http://www.truckingoffice.com/trucking-software-blog" method="post"> <div ...
0
votes
1answer
54 views

Google Analytics event works in Developer Console but not in page

I have this code in my product page after an item has been added to cart: <script type="text/javascript> //<![CDATA[ (function() { var ga = document.createElement('script'); ...
1
vote
1answer
20 views

Event tracking for a certain field of a form

Is it possible to specify the goal of the event tracking to a certain field of a form, such as selection from dropdown list or check box having been checked? I have a variable product which is ...
3
votes
1answer
181 views

Google Analytics Event Tracking not firing for multiple accounts on Chrome ONLY

I have an issue with Google Analytics Event Tracking that is only apparent on Chrome and no other browser. I have the following Google Analytics Tracking Code firing on my site for a click on an ...
0
votes
0answers
33 views

Event tracking in Google Analytics. Codes in right place?

I need your help in order to find out why Google Analytics is not tracking 3 events I created. Please check the source code for http://www.zulamian.com/, and look for the following lines of code. ...
2
votes
1answer
66 views

How to push one event into two different Google Analytics Accounts?

I've implemented the following on my site, to pass an Event to two different Google-Analytics accounts. In my GA-Trackingcode in the head section there are two different accounts defined: ...
0
votes
1answer
24 views

what this.href.substr(23) does for process of event traking with GA?

Can someone help me to understand the process in the following link, especially part within onClick: <a href="http://www.example.com/files/download/files.php?file=my_file.doc" ...
2
votes
1answer
126 views

GA-Using trackEvent and multiple accounts

I have a site that requires feeding data to two analytics account and I'm not sure how to implement the trackEvent since there are 2 different account numbers. Which one will it go to or both? This is ...
1
vote
1answer
228 views

Online Resources for Google Analytics Event Tracking for Backbone Application

I was trying to find some resources online for using Google Analytics' event tracking functionality in a Backbone application, and the only one that I was able to find was a blog post from airbnb, ...
0
votes
0answers
190 views

Google analytics event tracking not showing accurate data?

I have a "Download" button on my webpage(page1). Onclick of this button, a downloadFile.php page(page2) opens and a zip file automatically downloads. I want to track the onclick event in page1. So I ...
0
votes
2answers
313 views

target=“_blank” not opening new page due to Google Analytics cross domain javascript link tracking

I have probably screwed up the onClick javascript at leanstartupcircle.com. I am trying to add linktracking with javascript to all outbound links that I've tagged with an attribute. Whatever I did is ...
1
vote
2answers
1k views

Video Tracking Using GA Event Tracking

I'm trying to setup GA Event Tracking on my site for an IFRAME Vimeo Video embed. However, I can't figure out where/how the tracking object should be placed in my IFRAME code. Here's my IFRAME embed ...
1
vote
1answer
82 views

Request to Google Analytics sent but event not recorded

I am trying to track outbound links with the following script : $(document).ready(function(){ _gaq.push(['_setAccount', 'UA-XXXXXXX-XX']); //hidden number, well configured //works ...
0
votes
1answer
153 views

jQuery Cycle - google analytics event tracking in paging thumbs

I’m trying to apply Google Analytics event tagging to jQ Cycle pager thumbnails. Initially I’ve got the main slides working fine with the ga event tracking script applied to those, and thumbnail ...
0
votes
1answer
119 views

Google Analytics - Event Tracking not reported

We've implemented Event Tracking code that runs for a while now (more than a week), but we don't see any events in the Events reporting page. I've tested with Google Analytics Debugger chrome ...
0
votes
1answer
197 views

Event Tracking for Newsletter Sign Up

I want to track how many people sign up for Newsletters. I can do it with event tracking in Google Analytics. But there is an issue. I found the below code on the button <form name="ccoptin" ...
0
votes
1answer
117 views

Google event tracking code, correct?

I'm trying to track clicks on the submit-button on a form on a page but it's not working. I'm using this code: $('#edit-company-questions-submit').submit(function() { ...
3
votes
1answer
235 views

Google Analytics event flow

I am trying to use Google Analytics to examine how users progress through my site. The problem is that my site operates entirely upon AJAX. I have set up "events" using: _gaq.push(['_trackEvent', ...
0
votes
1answer
391 views

Google Analytics Event Tracking with /__utm.gif

I use this URL to report an event to google-analytics: ...
0
votes
1answer
420 views

Google Analytics Async Event Tracking with event handlers in jquery

On all my site pages I have the google analytics async code setup as follows just before the closing head tag.... <script type="text/javascript"> var _gaq = _gaq || []; ...
2
votes
3answers
496 views

Does Google Analytics event tracking on links slow down the user experience?

I am considering attaching onclick events to internal links on my site to do some Google Analytics event tracking. But I am concerned about performance. My understanding is that the workflow will ...
1
vote
0answers
126 views

What does the heading “### of your visits sent events” represent in Google Analytics Event Overview report? [closed]

Is there ever supposed to be a difference between the Number of Visits that sent events and the Events with visits numbers in Google Analytics Event overview report? Example: Here is a screen ...
0
votes
0answers
59 views

how to track or catch a windows.open in javascript as google Analytics do it

How to track the windows.open or all the out going links from our page most of my pages doesn't unload on clicking redirect link , they just open in a new window using the window.open What i need ...
0
votes
1answer
279 views

Custom events not being tracked in Google Analytics

Here is the script I'm using, copied directly from Google: <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-CODE']); _gaq.push(['_trackPageview']); ...
2
votes
4answers
429 views

Broken bounce rate stats since April 13th

We are using Google Analytics for our site that has huge traffic. We are in trouble with some interesting -and surely not good- changes in stats since last 50 days(started on April 13). Bounce rates ...
0
votes
2answers
371 views

Event tracking google analytics not working properly

I have added an event to track the number of downloads for my application. This is the code I have used: <div class="downloadiphone" style="top: 319px; left: 463px;"> <a class="blocklink" ...
0
votes
1answer
355 views

Pass _trackEvent to multiple analytic tracking codes

I got one domain set up with multiple Google Analytic accounts. The site has different events which were properly tracked in the first profile. But … i'd like to have the events passed to each account ...
1
vote
1answer
494 views

Google Analytics Event tracking for downloads not working

UA-*-1I'm trying to track file downloads on my site using GA Event Tracking. Here's my GA code, just before </head>: var _gaq = _gaq || []; _gaq.push(['_setAccount', ...
0
votes
1answer
71 views

Is Event Tracking in Google Analytics associated with built-in metrics?

In Google Analytics (GA) I am working with Event Tracking and would like to do queries on Events, joining the with associated metrics such as Page, Source, etc. Within GA, Is an Event associated or ...
6
votes
1answer
1k views

Can I track multiple Google Analytics events at once?

I am using Event Tracking on our conversion form to pass the values of a few drop-downs to Google Analytics as events. Our conversion form is an inquiry form for our online degree programs. I only ...
0
votes
1answer
371 views

Google Event Tracking Breaking Fancybox Plugin

I have a problem with a recent site I developed: http://www.thankstofarmers.org/ It was all working fine until last night, on day three of it's launch when I decided to start tracking external links ...
6
votes
3answers
2k views

Google Analytics Async: Events Tracking Callback?

I wish to use event tracking to record clicks on a specific type of link to another website. I am using jQuery, and the code I currently have is: $('a.website').click(function(event) { var href = ...
0
votes
1answer
484 views

Event tracking and virtual pageviews are not tracked in Google Analytics

I'm trying to track how visitors interact with the price calculator that i placed on my website. I've tried placing events and virtual pageviews in different places and events (onClick, onMouseDown, ...
1
vote
1answer
690 views

Google Analytics: Event Tracking Parameters

I am using ga for my website. but when i call track event like this _gaq.push(['_trackEvent', 'abc', 'def','pqr','xyz']); it does not work but when i call function by removing last parameter i.e ...
0
votes
1answer
198 views

How do implement Event Tracking on a site built with Classic ASP

I need to implement Google Analytics Event Tracking on a website built in classic asp. As I am n00b I assumed this would be achievable with a few simple includes. e.g. ...
2
votes
3answers
1k views

Google Analytics - Single Page Site - Click Tracking

The site in question is http://getstefan.com Its a single page portfolio site and I have tried using jQuery to add Google Analytics click tracking to every anchor tag on the site hoping to track ...
0
votes
2answers
294 views

Google Analytics Event Tracking - compare multiple events

basically I have set up event tracking across my website. I simply want to be able to compare two events, if this is possible? So I want to see who clicked on X and then what number of those then ...
5
votes
1answer
1k views

Event Tracking in GA not firing

I've added the folowing code into my JS to track a button click: _gaq.push(['_trackEvent', 'category', 'action', 'label']); I've hit a breakpoint on it using teh Chrome dev tools and _gaq ...
0
votes
1answer
3k views

Do I need to put _gaq.push(['_trackEvent' … inside <script> tags in my PHP code?

I want to push some event tracking to my google analytics account from my PHP scripts. I include an external PHP file which has the google analytics code in my header script which is included in all ...
1
vote
1answer
403 views

Google Analytics 'Event Tracking' For My Download Links Clicked on Other Websites

I've installed Google Analytics on my website, and I want to now use 'Event tracking' to generate reports on .M4a music files that are contained in my site via typical HTML anchor tags. Google gives ...
1
vote
1answer
904 views

Custom Variables in event tracking with multiple values in 1 slot

I sort of have several questions, Is it okay to have custom variables in an event tracking (_trackEvent)? Can i have multiple custom variables in on like like pageTracker._setCustomVar(1, ...