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.