Search code examples
javascriptcookiesgoogle-analyticssession-cookies

Google Analytics - Clear value of GA cookies when user is logged out


Using javascript , how do I clear/ remove the values of Google Analytics cookies of _gid and _ga ?

GA cookies


Solution

  • For anyone who is looking for the answer

    document.cookie = '_ga=; path=/; domain='+ domainValue + '; expires=' + new Date(0).toUTCString();
    document.cookie = '_gid=; path=/; domain='+ domainValue + '; expires=' + new Date(0).toUTCString();