aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/window/length/index.md
blob: 31f70f5c81d16ca42b6ac46e1add6c63b70d42a7 (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
---
title: Window.length
slug: Web/API/Window/length
translation_of: Web/API/Window/length
---
{{ ApiRef() }}

Retourne le nombre de frames (soit des éléments de frame ou iframe) présent sur la page.

## Syntaxe

    nombreDeFrames= window.length;

- _nombreDeFrames est égal au nombre de frames présent sur la page._

## Exemple

```js
if (window.length) {
  // La page contient des frames
}
```

## Specification

{{DOM0}}