I am currently trying to solve a tracking issue.
On our website, the user should be able to decide whether he is being tracked and what information is being shared.
We also have another third party tracking mechanism that can also be disabled. (if user wants)
I solved this problem with local storage + cookies. If the user decides to disable one of our tracking, the code that is responsible for this type of tracking will not be transmitted through the requested file.
I also respect the settings with window.Navigator.doNotTrack
, which will be in the case of beeing 1, are allowed in the eatery and ask permission.
All the information I found about this topic is here.
I want to know how to ask about the exception, as well as how to find out if the website is accepted or not.
I tried to describe here , but it does not work.
Navigator.trackingExceptionExists
source
share