aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/element/matches/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/api/element/matches/index.html')
-rw-r--r--files/ru/web/api/element/matches/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/files/ru/web/api/element/matches/index.html b/files/ru/web/api/element/matches/index.html
index c3a0bb4266..a219e95c84 100644
--- a/files/ru/web/api/element/matches/index.html
+++ b/files/ru/web/api/element/matches/index.html
@@ -5,7 +5,7 @@ translation_of: Web/API/Element/matches
---
<p>{{ APIRef("DOM") }}</p>
-<h2 id="Summary" name="Summary">Описание</h2>
+<h2 id="Summary">Описание</h2>
<p>Метод <strong><code>Element.matches()</code></strong> вернёт <code>true</code> или false, в зависимости от того, соответствует ли элемент указанному css-селектору.</p>
@@ -13,7 +13,7 @@ translation_of: Web/API/Element/matches
<p>В некоторых браузерах данный метод имеет нестандартное название - <code>matchesSelector()</code>.</p>
</div>
-<h2 id="Syntax" name="Syntax">Синтаксис</h2>
+<h2 id="Syntax">Синтаксис</h2>
<pre class="syntaxbox"><em>var result</em> = <em>element</em>.matches(selectorString)
</pre>
@@ -23,7 +23,7 @@ translation_of: Web/API/Element/matches
<li><strong><code>selectorString</code></strong> - строка, содержащая любой css-селектор, к примеру:<em> <strong>"div"</strong></em>,<em> <strong>"*"</strong></em>,<em> <strong>"#id"</strong></em> и прочие.</li>
</ul>
-<h2 id="Example" name="Example">Пример</h2>
+<h2 id="Example">Пример</h2>
<pre class="brush: html">&lt;div id="one"&gt;Первый подопытный&lt;/div&gt;
&lt;div class="someClass" id="two"&gt;Второй подопытный&lt;/div&gt;