How to manage user privacy and consent on your customers’ websites.
localStorage
).
sessionStorage
. This data is cleared when the user closes their tab.sessionStorage
to localStorage
and will use persistent storage from that point forward, allowing it to remember users across multiple sessions.waitForConsent
option to true
in your Radar loader script configuration.
localStorage
on your customer’s site until you explicitly tell it to via the giveCookieConsent
method.
giveCookieConsent()
method on the tracker’s namespace object when one of their users provides consent (for example, by clicking “Accept” on a cookie banner).
localStorage
, so their identity is maintained.giveCookieConsent
function only needs to be called once per user. Radar will remember that consent has been granted for all future sessions from that device.