https://developers.google.com/analytics/devguides/collection/gajs/?hl=pl#MultipleCommands
_gaq.push(
['_setAccount', 'UA-XXXXX-1'],
['_trackPageview'],
['b._setAccount', 'UA-XXXXX-2'],
['b._trackPageview']
);
in this code snippet, there is a “.b”.
Where is the “.b” come from? How should I use it?
If you only have one account, you don’t have to use anything:
From there, if you use any more accounts, you give each one a name (any name that’s valid in JS), and call its instructions like
name._doThing.You could track 8 accounts if you wanted – they just need 8 unique names, and you need to
_setAccounteach one to a different Google account.Our company chose to use
primaryandsecondary— we even give the first account a name.