blob: 23432385c6a0a368b602c0683c65c169ae1a553f (
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
|
---
title: Document.hidden
slug: Web/API/Document/hidden
translation_of: Web/API/Document/hidden
---
{{ ApiRef("DOM") }}
La propriété **`Document.hidden`** retourne un Booléen qui indique si la page est considérée cachée ou pas.
## Syntaxe
var boolean = document.hidden
## Exemples
```js
document.addEventListener("visibilitychange", function() {
console.log( document.hidden );
// Modifier le comportement...
});
```
## Spécifications
| Specification | Status | Comment |
| -------------------------------------------------------------------------------------------------------- | -------------------------------------------- | ------------------ |
| {{SpecName('Page Visibility API','#dom-document-hidden', 'Document.hidden')}} | {{Spec2('Page Visibility API')}} | Initial definition |
## Browser compatibility
{{Compat("api.Document.hidden")}}
|