I need to leverage this DOM event. IE has onpropertychange, which does what I need it to do also. Webkit doesn't seem to support this event, however. Is there an alternative I could use?
|
Although Chrome does not dispatch Here is an example for the document body:
For a simple attribute change, the
Console:
|
|||
|
|
If you are happy with merely detecting calls to
|
|||
|
|
|
I was able to come up with something based on this http://www.west-wind.com/Weblog/posts/453942.aspx |
|||||||||
|
|
Based on the solution by David Walsh I have created a small library to catch DOM insertions. If you can write a CSS selector that matches to the element after the change you are interested in - this is a valid solution. It covers more browsers than DOM Mutation Observers. |
|||
|
|