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
Solution 1:
I tested pushing multiple events with one push and it worked fine. It may be submitting the form before all the _trackEvents
are pushed.
Try adding a setTimeout
to the form.submit()
to give the _gaq.push
time to send all of them.
setTimeout(function(){ form.submit(); }, 200);
Install Chrome and the Google Analytics Debugger. Look in the console (control, shift, j) for the event tracking processing.
If you don't see all of your events tracking there, then something is up maybe with the form values.
Post a Comment for "Can I Track Multiple Google Analytics Events At Once?"