How can I delete demdex cookies via Adobe Launch (data collection) ?
I have been trying to delete the demdex cookie using a JS function and I am not able to delete it. The same JS function deletes other cookies but it won't delete the demdex cookie. Please see the function below:
function deleteCookies(cookieNames) {
for (var i = 0; i < cookieNames.length; i++) {
document.cookie = cookieNames[i] + '=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;domain=.demdex.net';
}
}
var cookiesToDelete = ['demdex'];
deleteCookies(cookiesToDelete);Is there anything wrong with this function? And is there another way to do it?
Also, is the demdex cookie always fire along with the AMCV and AMCVS cookie?