When using Google Website Optimizer A/B split test, is there a way I can read a cookie to see which version A or B did the user get? I need to know this from a page other than the control page.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Using JavaScript, you could extract the variation number client side and place it into a cookie, see my post here for details ( http://www.optimisationbeacon.com/testing/how-to-integrate-google-website-optimizer-with-google-analytics/ ), but you'll need the following code to get the combination number (undefined means the test is not running, 0 is A, 1 is B, and so on...):

utmx('combination')

That will get you the variation number. Otherwise, you can extract it from the cookie "__utmx":

222149575.00015140143722727739:2:0

The number on the end, "0" indicates this is version A or the original.

link|improve this answer
feedback

I'm not familiar with any way to parse the _utmx/_utmxx cookies like that.

Your best (and simplest) bet is to cookie them yourself on those various pages, and then access those cookies as you need them. On the control page, be sure to put the cookie-placing code below the control script, so that it doesn't cookie them every time before it redirects.

link|improve this answer
ok thanks. do you know what the api for utmx js function is? I've seen some calls to it to get variation info. – claya Sep 2 '10 at 17:58
1  
you can find some documentation on __utmx here code.google.com/apis/analytics/docs/concepts/… but it's not much. – erikvold Sep 3 '10 at 6:35
feedback

Your Answer

 
or
required, but never shown

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