diff options
Diffstat (limited to 'files/fr/web/api/treewalker/firstchild/index.html')
-rw-r--r-- | files/fr/web/api/treewalker/firstchild/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/files/fr/web/api/treewalker/firstchild/index.html b/files/fr/web/api/treewalker/firstchild/index.html index 8485e85827..25d5749df2 100644 --- a/files/fr/web/api/treewalker/firstchild/index.html +++ b/files/fr/web/api/treewalker/firstchild/index.html @@ -13,11 +13,11 @@ translation_of: Web/API/TreeWalker/firstChild <p>La méthode <strong><code>TreeWalker.firstChild()</code></strong> déplace le {{domxref("Node")}} courant vers le premier enfant <em>visible</em> du noeud courant et renvoie l'enfant trouvé. Il déplace aussi le noeud courant vers cet enfant. Si aucun enfant n'existe, elle renvoie <code>null</code> et le noeud courant n'est pas modifié.</p> -<h2 id="Syntax" name="Syntax">Syntaxe</h2> +<h2 id="Syntax">Syntaxe</h2> <pre class="syntaxbox"><em>node</em> = <em>treeWalker</em>.firstChild;</pre> -<h2 id="Example" name="Example">Exemple</h2> +<h2 id="Example">Exemple</h2> <pre class="brush: js">var treeWalker = document.createTreeWalker( document.body, @@ -29,7 +29,7 @@ var node = treeWalker.firstChild(); // renvoie le premier enfant de l'élément </pre> -<h2 id="Specification" name="Specification">Spécifications</h2> +<h2 id="Specification">Spécifications</h2> <table class="standard-table"> <tbody> |