Firefox Tomorrow

http header

DNT header

View on MDN ↗

[!NOTE] The DNT (Do Not Track) specification has been discontinued. See doNotTrack for more information.

The HTTP DNT (Do Not Track) request header indicates the user’s tracking preference. It lets users indicate whether they would prefer privacy rather than personalized content.

DNT is deprecated in favor of Global Privacy Control, which is communicated to servers using the Sec-GPC header, and accessible to clients from globalPrivacyControl.

Header type [Request header](https://developer.mozilla.org/en-US/docs/Glossary/Request%20header)
[Forbidden request header](https://developer.mozilla.org/en-US/docs/Glossary/Forbidden%20request%20header) Yes

Syntax

DNT: 0
DNT: 1
DNT: null

Directives

  • 0
    • : The user prefers to allow tracking on the target site.
  • 1
    • : The user prefers not to be tracked on the target site.
  • null
    • : The user has not specified a preference about tracking.

Examples

Reading Do Not Track status from JavaScript

The user’s DNT preference can also be read from JavaScript using the doNotTrack property:

navigator.doNotTrack; // "0", "1" or null

Specifications

Part of the discontinued Tracking Preference Expression (DNT) specification.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also