blob: ae9cce286904230f65cfd9b56fbefbe9a7c151e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
---
title: Navigator.doNotTrack
slug: Web/API/Navigator/doNotTrack
tags:
- API
- DOM
- Propriétés
- Reference
translation_of: Web/API/Navigator/doNotTrack
---
{{ApiRef("HTML DOM")}}{{SeeCompatTable}}
Renvoi le paramètre utilisateur de **do-not-track**. Cette valeur est "1" si l´utilisateur a demandé de ne pas être suivi par les sites web, le contenu ou la publicité.
## Syntaxe
dnt = navigator.doNotTrack;
La valeur reflète celle de l'en-tête "do-not-track" _(ne pas suivre)_, c'est-à-dire {"1", "0", "unspecified" }. Note : Avant Gecko 32, Gecko a utilisé les valeurs { "yes", "no", "unspecified"} ([bug 887703](https://bugzilla.mozilla.org/show_bug.cgi?id=887703)).
## Exemple
dump(window.navigator.doNotTrack);
// écrit "1" si DNT est activé; "0" si l'utilisateur a opté pour le suivi; sinon c'est "unspecified" (non spécifié)
## Spécifications
| Spécification | Statut | Commentaire |
| -------------------------------------------------------------------------------------------------------- | ---------------------------- | ------------------- |
| {{SpecName("Tracking", "#widl-Navigator-doNotTrack", "Navigator.doNotTrack")}} | {{Spec2("Tracking")}} | Définition initiale |
## Compatibilité des navigateurs
{{Compat("api.Navigator.doNotTrack")}}
## Voir aussi
- [Le guide pratique Do Not Track](/fr/docs/Web/Security/Do_not_track_field_guide)
|