Quantcast
Channel: How to detect users setting do-not-track - Stack Overflow
Viewing all articles
Browse latest Browse all 4

Answer by Grant Miller for How to detect users setting do-not-track

$
0
0

Navigator.doNotTrack

If you want to use client-side JavaScript to check whether or not a user has the dnt request header set, you can use navigator.doNotTrack.

This property returns the value of the dnt HTTP header (i.e., "1", "0", or "unspecified").

You can access this value via PHP by POSTing this value via AJAX.

const is_not_trackable = navigator.doNotTrack === '1';console.log(is_not_trackable); // True if user has requested privacy via DNTconsole.log(navigator.doNotTrack); // Current value of DNT header

Note: At the time of posting, navigator.doNotTrack is still considered experimental technology. Expect behavior to change in the future, and proceed with caution before using it in your application. See Browser Compatibility.


Viewing all articles
Browse latest Browse all 4

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>