'Cookieless solution for analytics.js (storage: none)

Trying to implement cookieless solution for analaytics.js

ga('create', 'YOUR-GA-TRACKING-CODE', {
   'storage': 'none',
   'clientId': clientIDHashed
});
ga('set', 'anonymizeIp', true);
ga('send', 'pageview');

Works fine, except 1 cookie _gat still appearing.

Any idea how to get rid of _gat cookie?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source