Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have implemented an XMLHttpRequest() call to a standalone html page which simply has an html, title & body tag which Google Analytics Tracking code.

I want to track when someone makes a request to display information (i.e. phone number) to try and understand what portion of people look at my directory versus obtaining a phone number to make a call.

It is very simple code:

var xhReq = new XMLHttpRequest();
xhReq.open("GET", "/registerPhoneClick.htm?id=" + id, false);
xhReq.send(null);
var serverResponse = xhReq.responseText

Yet I cannot see the "hit" in Analytics... Has anyone had this issue? All the analytics tracking code does is call:

<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-XXXXXXX");
pageTracker._trackPageview();
} catch(err) {}</script>

So realistically, my XmlHTTPRequest() calls an htm file within which a script is execute to make an outbound call to Google Analytics.

Is there any reason why an XmlHTTPRequest() would not execute this?

Does an XmlHTTPRequest() still bring the code to the client before execution?

Help Please

share|improve this question

2 Answers

Requesting the file doesn't mean that it's automatically executed. You just get the content of the file back as a string.

For the code to be executed, it would have to be loaded as a page in the browser. You can for example use an iframe to load it.

share|improve this answer
So you're saying that xmlhttprequest does not execute code? – sjw May 1 '10 at 4:12
@sjw: Exactly. Besides, if it would, requesting that code wouldn't work. You can only use document.write while the page is loading, or it will replace the current page instead. – Guffa May 1 '10 at 4:20
up vote 3 down vote accepted

To those having similar issues, obviously analytics won't track XMLHttpRequest() so to get around it, I found this post: Tracking API: Basic Configuration which explains how to simply log a pageview using javascript.

I simply added the following code to my javascrip:

var pageTracker = _gat._getTracker("UA-XXXXX-XXX");
pageTracker._trackPageview("/home/landingPage");

Much cleaner, easier and simpler than what I was originally trying to do...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.