diff options
Diffstat (limited to 'files/ru/web/api/document/anchors/index.html')
-rw-r--r-- | files/ru/web/api/document/anchors/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/files/ru/web/api/document/anchors/index.html b/files/ru/web/api/document/anchors/index.html index 0b833985cd..aa7c353b59 100644 --- a/files/ru/web/api/document/anchors/index.html +++ b/files/ru/web/api/document/anchors/index.html @@ -14,7 +14,7 @@ translation_of: Web/API/Document/anchors <p><strong><code>anchors</code></strong> возвращает массив всех якорей в документе.</p> -<h2 id="Syntax" name="Syntax">Синтаксис</h2> +<h2 id="Syntax">Синтаксис</h2> <pre class="syntaxbox"><var>nodeList</var> = document.anchors; </pre> @@ -27,7 +27,7 @@ translation_of: Web/API/Document/anchors <p> </p> -<h2 id="Example" name="Example">Пример</h2> +<h2 id="Example">Пример</h2> <pre class="brush:js">if ( document.anchors.length >= 5 ) { dump("найдено слишком много якорей"); @@ -84,7 +84,7 @@ function init() { <p><a href="https://jsfiddle.net/S4yNp">Посмотреть на JSFiddle</a></p> -<h2 id="Notes" name="Notes">Примечание</h2> +<h2 id="Notes">Примечание</h2> <p>По причине обратной совместимости возвращаемый массив якорей включает в себя лишь якоря, созданные с помощью атрибута <strong>name</strong>, а не а <strong>id</strong>.</p> |