I have a client who is using a form that links to a booking engine on a different domain. However, they aren't using a traditionally coded form so to speak:

<div id="qs" align="center">
  <div align="center"><img src="images/qs_title.gif" alt="Quick Search">
      <table width="200" border="0" cellpadding="0" cellspacing="0">
        <!--<form  method="post">--><form  method="post">

....

 <td width="35%" valign="bottom"><div align="left"><a href="javascript:sendToCBE();"><img src="quicksearch/continue-buttom_dreams.gif" alt="Continue" width="83" height="24" border="0" ></a></div></td>

Because the form is being managed by the JavaScript Document CBE, that was modified with a getLinkerURL code:

// JavaScript Document
function popup_no_status(loc)
{
var windowW=1000
var windowH=700
s = "width="+windowW+",height="+windowH+",status=yes, resizable=yes, scrollbars=yes";
mywin = window.open(pageTracker._getLinkerUrl(loc), "CBE", s);
mywin.focus();
}

I've been told that this should work, but it doesn't seem to be passing the cookies along. The target/domain page does have the pageTracker._setAllowLinker(true); code on it. However, only the target page has the setAllowHash(false); code on it. Does Domain 1 (the domain I want to pass the cookies) need that setAllowHash(false); code as well? I'm not sure what I'm missing here. The cookies aren't being passed along and so I'm getting a referral cookie from the first domain. Any ideas? All insight is much appreciated!

link|improve this question

75% accept rate
_setAllowHash(false) is deprecated by now, and you shouldn't use it at all. – Eduardo Cereto Nov 28 '11 at 14:45
@eduardocereto I do not have direct access to the website in which the deprecated _setAllowHas(false) is placed. Will that code being on the target page affect the cookies being passed along to achieve cross-domain tracking? Any other suggestions to make this work? – Glenn B Nov 29 '11 at 21:40
Could you validate that cookies are passed over in a simpler configuration (just a link instead of form) ? It would allow to validate the configuration of the target site. Next, you should look at linkByPost : code.google.com/apis/analytics/docs/gaJS/…._linkByPost – Open SEO Apr 9 at 22:15
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.