Skip to content

Instantly share code, notes, and snippets.

@zapthedingbat
Created June 25, 2020 07:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zapthedingbat/402c59c0b9936aa3b5d804f919677659 to your computer and use it in GitHub Desktop.
Save zapthedingbat/402c59c0b9936aa3b5d804f919677659 to your computer and use it in GitHub Desktop.
Poll for the Conde Nast XID and pass it into permutive
(function () {
var interval = setInterval(function () {
var [, xid] = (document.cookie.match(/CN_xi_d=([^;]+)/) || []);
xid = xid || window._4d && window._4d.user && window._4d.user.xid;
if (xid) {
permutive.identify([
{
id: xid,
tag: 'xid'
}
]);
clearInterval(interval);
}
}, 250);
}())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment