aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/element/queryselector/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/api/element/queryselector/index.html')
-rw-r--r--files/ru/web/api/element/queryselector/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/files/ru/web/api/element/queryselector/index.html b/files/ru/web/api/element/queryselector/index.html
index b51ef68cdd..febe3640bb 100644
--- a/files/ru/web/api/element/queryselector/index.html
+++ b/files/ru/web/api/element/queryselector/index.html
@@ -7,7 +7,7 @@ translation_of: Web/API/Element/querySelector
<p>Возвращает первый элемент, являющийся потомком элемента, на который применено правило указанной группы селекторов.</p>
-<h2 id="Syntax" name="Syntax">Синтаксис</h2>
+<h2 id="Syntax">Синтаксис</h2>
<pre class="syntaxbox"><var>element</var> = baseElement.querySelector(<em>selector</em>s);
</pre>
@@ -17,14 +17,14 @@ translation_of: Web/API/Element/querySelector
<li><code>selectors</code> - это группа <a href="/ru-RU/docs/Web/Guide/CSS/Getting_Started/Selectors">селекторов</a> для поиска совпадения.</li>
</ul>
-<h2 id="Example" name="Example">Пример</h2>
+<h2 id="Example">Пример</h2>
<p>Данный пример получает первый элемент style, который не имеет атрибута type или этот атрибут равен text/css, в теле (body) HTML документа:</p>
<pre class="brush:js">var el = document.body.querySelector("style[type='text/css'], style:not([type])");
</pre>
-<h2 id="Notes" name="Notes">Примечания</h2>
+<h2 id="Notes">Примечания</h2>
<p>Возвращает null если совпадения не найдены, иначе первый найденный элемент.</p>