Do Not Track (DNT) Header
JS
S
JavaScriptIndicates the user's tracking preference.
1const dnt = navigator.doNotTrack; // 0 or 1
2if(!dnt) {
3 dropCookies();
4}Created on 6/14/2018
Indicates the user's tracking preference.
1const dnt = navigator.doNotTrack; // 0 or 1
2if(!dnt) {
3 dropCookies();
4}Created on 6/14/2018