aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/globaleventhandlers
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/api/globaleventhandlers')
-rw-r--r--files/ru/web/api/globaleventhandlers/onchange/index.html2
-rw-r--r--files/ru/web/api/globaleventhandlers/onclick/index.html2
-rw-r--r--files/ru/web/api/globaleventhandlers/onerror/index.html2
-rw-r--r--files/ru/web/api/globaleventhandlers/onfocus/index.html2
-rw-r--r--files/ru/web/api/globaleventhandlers/onload/index.html2
5 files changed, 5 insertions, 5 deletions
diff --git a/files/ru/web/api/globaleventhandlers/onchange/index.html b/files/ru/web/api/globaleventhandlers/onchange/index.html
index 727828bc5b..47960c021f 100644
--- a/files/ru/web/api/globaleventhandlers/onchange/index.html
+++ b/files/ru/web/api/globaleventhandlers/onchange/index.html
@@ -25,7 +25,7 @@ var <em>handlerFunction</em> = <em><var>element</var></em>.onchange;
<p><code><em>handlerFunction</em></code>  должна быть либо <a href="/en-US/docs/Web/JavaScript/Reference/Functions">функцией</a> определяющей обработчик события, либо <code>null</code> .</p>
-<h2 id="Notes" name="Notes">Заметки</h2>
+<h2 id="Notes" name="Notes">Примечания</h2>
<p>Почитайте  страницу <a href="/en-US/docs/Web/Guide/Events/Event_handlers">DOM обработчики события</a> , там содержится вся информация о работе с  <code>on...</code>  обработчиками.</p>
diff --git a/files/ru/web/api/globaleventhandlers/onclick/index.html b/files/ru/web/api/globaleventhandlers/onclick/index.html
index 47724b1f9d..e953fd4df9 100644
--- a/files/ru/web/api/globaleventhandlers/onclick/index.html
+++ b/files/ru/web/api/globaleventhandlers/onclick/index.html
@@ -59,7 +59,7 @@ translation_of: Web/API/GlobalEventHandlers/onclick
<pre class="brush:js">p.onclick = function(event) { alert("moot!"); };
</pre>
-<h2 id="Notes" name="Notes">Заметки</h2>
+<h2 id="Notes" name="Notes">Примечания</h2>
<p>Событие <code>click</code> возникает, когда пользователь кликает на элемент. Событие <code>click</code> возникнет после событий <code>mousedown</code> и <code>mouseup</code>.</p>
diff --git a/files/ru/web/api/globaleventhandlers/onerror/index.html b/files/ru/web/api/globaleventhandlers/onerror/index.html
index e870db3c68..f6daa8781e 100644
--- a/files/ru/web/api/globaleventhandlers/onerror/index.html
+++ b/files/ru/web/api/globaleventhandlers/onerror/index.html
@@ -57,7 +57,7 @@ window.onerror = function myErrorHandler(errorMsg, url, lineNumber) {
}
</pre>
-<h2 id="Notes" name="Notes">Заметки</h2>
+<h2 id="Notes" name="Notes">Примечания</h2>
<p>Событие возникает, когда происходит ошибка в скрипте.</p>
diff --git a/files/ru/web/api/globaleventhandlers/onfocus/index.html b/files/ru/web/api/globaleventhandlers/onfocus/index.html
index 4c6d62e881..550b6d5761 100644
--- a/files/ru/web/api/globaleventhandlers/onfocus/index.html
+++ b/files/ru/web/api/globaleventhandlers/onfocus/index.html
@@ -12,7 +12,7 @@ translation_of: Web/API/GlobalEventHandlers/onfocus
<pre class="syntaxbox">element.onfocus = выполняемый код при сработке события
</pre>
-<h2 id="Заметка">Заметка</h2>
+<h2 id="Примечание">Примечание</h2>
<p>Событие фокуса (focus) вызывается когда пользователь устанавливает фокус на данный элемент.</p>
diff --git a/files/ru/web/api/globaleventhandlers/onload/index.html b/files/ru/web/api/globaleventhandlers/onload/index.html
index 7040dadfc4..3b6b12123a 100644
--- a/files/ru/web/api/globaleventhandlers/onload/index.html
+++ b/files/ru/web/api/globaleventhandlers/onload/index.html
@@ -41,7 +41,7 @@ translation_of: Web/API/GlobalEventHandlers/onload
&lt;/html&gt;
</pre>
-<h2 id="Notes" name="Notes">Заметки</h2>
+<h2 id="Notes" name="Notes">Примечания</h2>
<p>Событие загрузки возникают в конце процесса загрузки документа. В этот момент все объекты документа находятся в DOM, и все картинки, скрипты, фреймы, ссылки загружены.</p>