aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/node/firstchild/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/api/node/firstchild/index.html')
-rw-r--r--files/ru/web/api/node/firstchild/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/files/ru/web/api/node/firstchild/index.html b/files/ru/web/api/node/firstchild/index.html
index f273add41f..8b34ff1470 100644
--- a/files/ru/web/api/node/firstchild/index.html
+++ b/files/ru/web/api/node/firstchild/index.html
@@ -9,7 +9,7 @@ translation_of: Web/API/Node/firstChild
<p>Свойство <code><strong>Node.firstChild</strong></code> только для чтения, возвращающее первый потомок узла в древе или <code>null</code>, если узел является бездетным. Если узел это <code>документ</code>, он возвращает первый узел в списке своих прямых детей.</p>
-<h2 id="Syntax" name="Syntax">Синтаксис</h2>
+<h2 id="Syntax">Синтаксис</h2>
<pre class="syntaxbox"><em>var childNode</em> = <em>node</em>.firstChild;
</pre>
@@ -18,7 +18,7 @@ translation_of: Web/API/Node/firstChild
<p><code>childNode</code> это ссылка на первый потомок <code>node,</code> если таковой имеется, в противном случае это <code>null</code>.</p>
-<h2 id="Example" name="Example">Пример</h2>
+<h2 id="Example">Пример</h2>
<p>Этот пример демонстрирует использование <code>firstChild</code> и как этому свойству могут мешать пробелы. Смотрите раздел {{ Anch("Notes") }} для получения дополнительной информации о обработке пробелов в Gecko DOM.</p>
@@ -47,7 +47,7 @@ translation_of: Web/API/Node/firstChild
<p>Теперь alert будет показывать 'SPAN'.</p>
-<h2 id="Specification" name="Specification">Спецификации</h2>
+<h2 id="Specification">Спецификации</h2>
<ul>
<li><a class="external" href="http://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#attribute-firstChild">DOM Level 1 Core: firstChild</a></li>