How Do I Add Custom Google Analytics Events?


Blazeo (formerly ApexChat) provides a JavaScript "hook" in our invitation which can be used to insert custom code into the chat initiation process. To use this hook, you simply need to define the Chat Interceptor function somewhere on your page, like this:

< script type="text/javascript">
window.ChatInterceptor = function () {
// replace this code with what your website needs:
_gaq.push(['_trackEvent', 'Invitation', 'Click']);
};
< /script>

This code will be executed automatically when an invitation is clicked.

Additional information about using Google Analytics is provided by Google: AnalyticsJS and GAJS.