get_aamCookie Code get-aamcookie-code

Code required by DART Enterprise (and other destination types) to capture the Audience Manager unique user ID (UUID) value.

Define this function at the top of the page, ideally within the <head> code block.

<script type="text/javascript">
function get_aamCookie (c_name)
{
var i,x,y,ARRcookies=document.cookie.split(";");
for (i=0;i<ARRcookies.length;i++)
   {
   x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
   y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
   x=x.replace(/^\s+|\s+$/g,"");
   if (x==c_name)
      {
      return unescape(y);
      }
   }
}
</script>
recommendation-more-help
de293fbf-b489-49b0-8daa-51ed303af695