aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/window/length
diff options
context:
space:
mode:
authorjulieng <julien.gattelier@gmail.com>2021-10-02 17:20:24 +0200
committerSphinxKnight <SphinxKnight@users.noreply.github.com>2021-10-02 17:30:20 +0200
commit1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde (patch)
tree30a56efd3eff3a01bd1611e1840fdbbfacf544a4 /files/fr/web/api/window/length
parentc05efa8d7ae464235cf83d7c0956e42dc6974103 (diff)
downloadtranslated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.gz
translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.bz2
translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.zip
convert content to md
Diffstat (limited to 'files/fr/web/api/window/length')
-rw-r--r--files/fr/web/api/window/length/index.md25
1 files changed, 12 insertions, 13 deletions
diff --git a/files/fr/web/api/window/length/index.md b/files/fr/web/api/window/length/index.md
index af1ee54111..31f70f5c81 100644
--- a/files/fr/web/api/window/length/index.md
+++ b/files/fr/web/api/window/length/index.md
@@ -3,25 +3,24 @@ title: Window.length
slug: Web/API/Window/length
translation_of: Web/API/Window/length
---
-<div>{{ ApiRef() }}</div>
+{{ ApiRef() }}
-<p>Retourne le nombre de frames (soit des éléments de frame ou iframe) présent sur la page.</p>
+Retourne le nombre de frames (soit des éléments de frame ou iframe) présent sur la page.
-<h2 id="Syntax">Syntaxe</h2>
+## Syntaxe
-<pre class="syntaxbox"><em>nombreDeFrames</em>= window.length;
-</pre>
+ nombreDeFrames= window.length;
-<ul>
- <li><em>nombreDeFrames est égal au nombre de frames présent sur la page.</em></li>
-</ul>
+- _nombreDeFrames est égal au nombre de frames présent sur la page._
-<h2 id="Example">Exemple</h2>
+## Exemple
-<pre class="brush:js">if (window.length) {
+```js
+if (window.length) {
// La page contient des frames
-}</pre>
+}
+```
-<h2 id="Specification">Specification</h2>
+## Specification
-<p>{{DOM0}}</p>
+{{DOM0}}