I have a link that creates multiple cookies with different domains like: link and link .
How can I make JavaScript to delete cookies from the domain ?
This code forces the expiration of all cookies whose scope is the current site:
function apagaCookies() {
var cookies = document.cookie.split(";");
for (var i = 0; i < cookies.length; i++) {
var cookie = cookies[i];
var eqPos = cookie.indexOf("=");
var name = eqPos > -1 ? cookie.substr(0, eqPos) : cookie;
document.cookie = name + "=;expires=Thu, 01 Jan 1970 00:00:00 GMT";
}
}
Source: Original Post in English OS .