回答編集履歴
2
追記2 : Prototype.js
test
CHANGED
@@ -15,3 +15,13 @@
|
|
15
15
|
Stack Overflow [Does IE10 support DOM4 Mutation Observers?](https://stackoverflow.com/questions/14180603/does-ie10-support-dom4-mutation-observers)
|
16
16
|
|
17
17
|
「No! IE11 から」らしいですので要件外ですね。
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
---
|
22
|
+
|
23
|
+
似たような方法に、[Prototype.js](http://prototypejs.org/) の [Event.observe](http://javascriptist.net/ref_prototype/event.observe.html) があります。
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
[jQuery とのコンフリクトを回避](http://semooh.jp/jquery/ref/cont/with_prototype/)するために、読み込み順があります。
|
1
追記
test
CHANGED
@@ -3,3 +3,15 @@
|
|
3
3
|
|
4
4
|
|
5
5
|
SPA であれば、 HTML 内の ``#content`` など、「特定の wrapper が更新された後」となると思いますので、[MutationObserver](https://developer.mozilla.org/ja/docs/Web/API/MutationObserver) で変化を監視する方法もありそうですね。
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
追記)
|
10
|
+
|
11
|
+
> 最低限IE10への対応が必要
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
Stack Overflow [Does IE10 support DOM4 Mutation Observers?](https://stackoverflow.com/questions/14180603/does-ie10-support-dom4-mutation-observers)
|
16
|
+
|
17
|
+
「No! IE11 から」らしいですので要件外ですね。
|