Mobile app version of vmapp.org
Login or Join
Phylliss660

: Google Analytics In-Page Tracking For Clicks The in-page view in Google Analytics shows the website in an IFrame and overlays the statistics of link clicks. How is this done to track and show

@Phylliss660

Posted in: #GoogleAnalytics

The in-page view in Google Analytics shows the website in an IFrame and overlays the statistics of link clicks. How is this done to track and show clicks (or entered data) for textbox ( elements)?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Phylliss660

1 Comments

Sorted by latest first Latest Oldest Best

 

@Candy875

In order to track the use of the textbox you need to add event tracking. You can find a detailed guide here: code.google.com/apis/analytics/docs/tracking/eventTrackerGuide.html.

For example, I got this snippet of code:

onchange="pageTracker._trackEvent('Coupons', this.form.action, this.value);"


from here: groups.google.com/a/googleproductforums.com/forum/#!category-topic/analytics/discuss-google-analytics-features-with-other-users/eLw4H2WsMDA.
Once you've set that up you can see clicks, but you can't see entered data via the overlay. To do that you'll have to look at the event reports.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme