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!
_setAllowHash(false)is deprecated by now, and you shouldn't use it at all. – Eduardo Cereto Nov 28 '11 at 14:45_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