@wilbr that’s nice to hear. Unfortunately there are many banners out there just ignoring the users choice 😄
But what meta did is really crazy, they communicated with their app on your phone via a web script. Preventing all measurements the os, browser or user applied.
switch (consent) {
case "no":
case "fu":
case "lol":
case "idk":
case "yes":
default:
track_all_the_things();
}
@CyReVolt @guardingpearsoftware
```C
if (cookies.accepted)
goto trackUser();
goto trackUser();
goto donotTrackUser();
```
@guardingpearsoftware #altText4you an older picture of Mark Zuckerberg, holding his arms forward and looking into the camera, giving off slight robot-vibes; next to him a block of JavaScript code:
if (cookies.accepted) {
trackUser();
} else {
trackUserAnyway();
}