aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/events/domsubtreemodified/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/web/events/domsubtreemodified/index.html')
-rw-r--r--files/ko/web/events/domsubtreemodified/index.html17
1 files changed, 0 insertions, 17 deletions
diff --git a/files/ko/web/events/domsubtreemodified/index.html b/files/ko/web/events/domsubtreemodified/index.html
deleted file mode 100644
index b40ee6b069..0000000000
--- a/files/ko/web/events/domsubtreemodified/index.html
+++ /dev/null
@@ -1,17 +0,0 @@
----
-title: DOMSubtreeModified
-slug: Web/Events/DOMSubtreeModified
-translation_of: Archive/Events/DOMSubtreeModified
----
-<p>{{ draft() }}</p>
-
-<h3 id="Example" name="Example">예제</h3>
-
-<p>아래 코드는 마지막으로 DOM 이 변경된 시간을 페이지의 title 에 표시합니다.</p>
-
-<div class="warning">해당 이벤트 핸들러 안에서 DOM 을 변경할 경우 무한 루프에 빠지기 쉬우므로 매우 신중해야 합니다.</div>
-
-<pre class="brush: js">document.body.addEventListener('DOMSubtreeModified', function () {
-  document.title = 'DOM Changed at ' + new Date();
-}, false);
-</pre>