Google Analytics & Event Trackers - how to get traffic source by event?
Posted
by
jeffkee
on Stack Overflow
See other posts from Stack Overflow
or by jeffkee
Published on 2012-03-21T22:36:58Z
Indexed on
2012/03/21
23:30 UTC
Read the original article
Hit count: 240
I'm using a google events tracker like this:
_gaq.push(['_setAccount', 'UA-1422398-23']);
_gaq.push(['_trackEvent', 'BookingRequest', 'Parent Name', $('#parent_fname').val()+' '.$('#parent_lname').val()]);
In this case, let's say I can track how many requests were submitted.. is there a way to track these specific users, and see the traffic source, and if it's Google, then what keywords they searched my website by?
Basically I want to see the people booking online, and see how and where they got me... and hoping there's a better and more elegant way than to have a field that asks "What did you type into Google to find us?"
© Stack Overflow or respective owner