Dynamic Variables

Here's a fun feature: dynamic variables. Remember how in the article on variables we talked about how data is transported into Adobe Analytics? You basically write data into props or eVars, and sometimes into both. As an example, let's put this onto a page: s.pageName="Blog:130423:Dynamic_Variables" s.prop1="blog"; // site section s.prop2="blog:principles"; // site sub section s.eVar1="blog"; … Continue reading Dynamic Variables

Debugging

You are a developer - you develop! Also, sometimes, you debug. Our article today focusses on the latter: how to debug when you are implementing Adobe Analytics. Let's start off by finding out what exactly we can expect to debug. Adobe Analytics has a lot of moving parts, some of them client-side, some "in the … Continue reading Debugging

The s_code.js file – Core Javascript Code

This article is part of the mini series about the s_code.js file. You can find the other articles here: Overview Configuration section The s.doPlugin() callback method Plugins Core Javascript code (this article) Core Javascript Code The biggest portion of the s_code.js file is the core Javascript code underneath the "DO NOT CHANGE" line. In this … Continue reading The s_code.js file – Core Javascript Code