aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/parentnode/firstelementchild/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/api/parentnode/firstelementchild/index.html')
-rw-r--r--files/fr/web/api/parentnode/firstelementchild/index.html45
1 files changed, 0 insertions, 45 deletions
diff --git a/files/fr/web/api/parentnode/firstelementchild/index.html b/files/fr/web/api/parentnode/firstelementchild/index.html
deleted file mode 100644
index 60983da28f..0000000000
--- a/files/fr/web/api/parentnode/firstelementchild/index.html
+++ /dev/null
@@ -1,45 +0,0 @@
----
-title: Element.firstElementChild
-slug: Web/API/ParentNode/firstElementChild
-tags:
- - Parcours arborescence
-translation_of: Web/API/ParentNode/firstElementChild
----
-<p>{{ gecko_minversion_header("1.9.1") }}</p>
-
-<p>{{ ApiRef() }}</p>
-
-<h3 id="Summary" name="Summary">Résumé</h3>
-
-<p><strong><span style="font-family: Verdana,Tahoma,sans-serif;">firstElementChild</span></strong> renvoie le premier élément enfant d'un élément ou <code>null</code> s'il n'y a pas de descendants.</p>
-
-<h3 id="Syntax_and_values" name="Syntax_and_values">Syntaxe and valeurs</h3>
-
-<pre class="eval">var <em>N</em><em>oeudEnfant</em> = ReferenceElementNoeud.firstElementChild; </pre>
-
-<p><var>NoeudEnfant</var> est une référence vers le premier élément enfant de l'élément noeud , ou <code>null</code> s'il n'y en a pas.</p>
-
-<p>Cet attribut est en lecture seule.</p>
-
-<h3 id="Example" name="Example">Exemple</h3>
-
-<pre>&lt;p id="para-01"&gt;
- &lt;span&gt;Premier span&lt;/span&gt;
-&lt;/p&gt;
-
-&lt;script type="text/javascript"&gt;
- var p01 = document.getElementById('para-01');
- alert(p01.firstElementChild.nodeName)
-&lt;/script&gt;</pre>
-
-<p>Dans cet exemple la fonction alert affiche "SPAN", qui est le nom du premier nœud enfant de l'élément paragraphe.</p>
-
-<h3 id="Voir_aussi">Voir aussi</h3>
-
-<ul>
- <li><a class="internal" href="/en/DOM/Element.childElementCount" title="En/DOM/Element.childElementCount"><code>childElementCount</code></a></li>
- <li><a class="internal" href="/en/DOM/Element.children" title="En/DOM/Element.children"><code>children</code></a></li>
- <li><a class="internal" href="/en/DOM/Element.lastElementChild" title="En/DOM/Element.lastElementChild"><code>lastElementChild</code></a></li>
- <li><a class="internal" href="/en/DOM/Element.nextElementSibling" title="En/DOM/Element.nextElementSibling"><code>nextElementSibling</code></a></li>
- <li><a class="internal" href="/en/DOM/Element.previousElementSibling" title="En/DOM/Element.previousElementSibling"><code>previousElementSibling</code></a></li>
-</ul>