How do I delete cookies from a site?

3

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 ?

    
asked by anonymous 03.02.2015 / 14:46

1 answer

1

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 .

    
03.02.2015 / 14:50