aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/events/domsubtreemodified/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/events/domsubtreemodified/index.html')
-rw-r--r--files/ru/web/events/domsubtreemodified/index.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/files/ru/web/events/domsubtreemodified/index.html b/files/ru/web/events/domsubtreemodified/index.html
new file mode 100644
index 0000000000..dfd00fe94d
--- /dev/null
+++ b/files/ru/web/events/domsubtreemodified/index.html
@@ -0,0 +1,21 @@
+---
+title: DOMSubtreeModified
+slug: Web/Events/DOMSubtreeModified
+tags:
+ - DOMSubtreeModified
+translation_of: Archive/Events/DOMSubtreeModified
+---
+<h2 id="Example" name="Example">Пример</h2>
+
+<p>Следующий код отображает время последнего изменения DOM в строке заголовка страницы.</p>
+
+<div class="warning">
+<p>Это событие устарело в пользу  <a href="/en-US/docs/Web/API/MutationObserver">Mutation Observer API</a></p>
+</div>
+
+<div class="warning">Будьте очень осторожны с этим событием, легко вызвать бесконечный цикл, если вы решите изменить DOM внутри обработчика событий.</div>
+
+<pre class="brush: js">document.body.addEventListener('DOMSubtreeModified', function () {
+  document.title = 'DOM Изменен в ' + new Date();
+}, false);
+</pre>