aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/treewalker/parentnode/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/api/treewalker/parentnode/index.html')
-rw-r--r--files/fr/web/api/treewalker/parentnode/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/files/fr/web/api/treewalker/parentnode/index.html b/files/fr/web/api/treewalker/parentnode/index.html
index 81bb1b885a..a80948ea84 100644
--- a/files/fr/web/api/treewalker/parentnode/index.html
+++ b/files/fr/web/api/treewalker/parentnode/index.html
@@ -13,12 +13,12 @@ translation_of: Web/API/TreeWalker/parentNode
<p>La méthode <strong><code>TreeWalker.parentNode()</code></strong> déplace le {{domxref("Node")}} courant vers le premier noeud ancêtre <em>visible</em> dans l'ordre du document et renvoie le noeud trouvé. Si aucun noeud n'existe ou s'il est au-dessus du <em>noeud racine</em> du <code>TreeWalker</code>, elle renvoie <code>null</code> et le noeud actuel reste inchangé.</p>
-<h2 id="Syntax" name="Syntax">Syntaxe</h2>
+<h2 id="Syntax">Syntaxe</h2>
<pre class="syntaxbox"><em>node</em> = <em>treeWalker</em>.parentNode();
</pre>
-<h2 id="Example" name="Example">Exemple</h2>
+<h2 id="Example">Exemple</h2>
<pre class="brush: js">var treeWalker = document.createTreeWalker(
document.body,
@@ -30,7 +30,7 @@ var node = treeWalker.parentNode(); // returns null as there is no parent
</pre>
-<h2 id="Specification" name="Specification">Spécifications</h2>
+<h2 id="Specification">Spécifications</h2>
<table class="standard-table">
<tbody>