aboutsummaryrefslogtreecommitdiff
path: root/files/pl/web/api/document/firstchild/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pl/web/api/document/firstchild/index.html')
-rw-r--r--files/pl/web/api/document/firstchild/index.html37
1 files changed, 0 insertions, 37 deletions
diff --git a/files/pl/web/api/document/firstchild/index.html b/files/pl/web/api/document/firstchild/index.html
deleted file mode 100644
index f53cd74778..0000000000
--- a/files/pl/web/api/document/firstchild/index.html
+++ /dev/null
@@ -1,37 +0,0 @@
----
-title: document.firstChild
-slug: Web/API/Document/firstChild
-tags:
- - DOM
- - Dokumentacja_Gecko_DOM
- - Gecko
- - Wszystkie_kategorie
-translation_of: Web/API/Node/firstChild
-translation_of_original: Web/API/document.firstChild
----
-<p>{{ ApiRef() }}</p>
-<h3 id="Podsumowanie" name="Podsumowanie">Podsumowanie</h3>
-<p><b>document.firstChild</b> zwraca pierwszy węzeł z listy bezpośrednich dzieci dokumentu.</p>
-<h3 id="Sk.C5.82adnia" name="Sk.C5.82adnia">Składnia</h3>
-<pre class="eval"><i>dziecko</i> = document.firstChild
-</pre>
-<h3 id="Parametry" name="Parametry">Parametry</h3>
-<ul>
- <li><code>dziecko</code> jest węzłem typu <a href="pl/DOM/element">element</a>.</li>
-</ul>
-<h3 id="Przyk.C5.82ad" name="Przyk.C5.82ad">Przykład</h3>
-<pre>function fChild() {
- f = document.firstChild;
- alert(f.tagName);
-}
-// wyświetli: HTML
-</pre>
-<h3 id="Uwagi" name="Uwagi">Uwagi</h3>
-<p>Zauważ, że możesz powrócić do drzewa DOM z tą własnością, by przejąć te węzły potomne, których potrzebujesz, ponieważ prawie zawsze <b>firstChild</b> zwraca element HTML.</p>
-<h3 id="Specyfikacja" name="Specyfikacja">Specyfikacja</h3>
-<p><a class="external" href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-169727388">firstChild </a></p>
-<p> </p>
-<p> </p>
-<div class="noinclude">
-  </div>
-<p>{{ languages( { "en": "en/DOM/document.firstChild", "es": "es/DOM/document.firstChild", "fr": "fr/DOM/document.firstChild", "ja": "ja/DOM/document.firstChild" } ) }}</p>