Mutation Observers are part of the DOM4 specification, and allow callbacks to be triggered when elements of the DOM change.

learn more… | top users | synonyms

1
vote
0answers
28 views

Javascript: How to detect when a style change happens on the page?

I want to detect when a style change happens on any DOM element on a page (i.e. changes to any element's position, height, width, visibility, etc). [While not related to the question directly, this is ...
0
votes
0answers
6 views

Is there a way to detect which MutationObserver a callback was called from?

If I have a single callback function and two MutationObservers for two different dom nodes, is there a way to tell which observer triggered the callback when it is called? The work the callback needs ...
0
votes
1answer
23 views

Chrome Frame error in IE (mutation observers)

Im using Google Chrome Frame in IE and the mutation-summary library. I have checked the google site and I do not see anything mentioning a lack of support for mutation observers. the error is on line ...
1
vote
1answer
37 views

How do you get a stack trace for a triggered MutationObserver?

First off, this is not a "How to create a mutation observer?" post and I have seen the APIs. I was wondering if anyone knows a way to display the "source" of when a mutation occurred. It would most ...
0
votes
1answer
275 views

Does IE10 support DOM4 Mutation Observers?

If not, then I can only hope for the same behavior as IE9 with Mutation Events? I ask because I have no working IE10 platform currently, and Google search has yielded no results for me.
1
vote
1answer
159 views

How to test for DOM4 Mutation Observers with Modernizr.js?

I'm trying to create a test to detect for Mutation Observers using Modernizr.js. On the Modernizer Documentation, there's a section for testing DOM elements known as prefixes. I tried that using: ...
11
votes
2answers
1k views

Mutation Observer for creating new elements

I am trying to make a function go off when a particular div is created. In the simplest of terms, I have something like this: <a href="" id="foo">Click me!</a> <script> ...
4
votes
3answers
792 views

Can jQuery selectors be used with DOM mutation observers?

HTML5 includes a concept of "mutation observers" to monitor changes to the browser's DOM. Your observer callback will be passed data which looks a lot like DOM tree snippets. I don't know if they are ...
0
votes
1answer
281 views

How to use jQuery to detect if an HTML element has vanished?

In a userscript, I do lots of detection of element changes using waitForKeyElements(). However, I've run into a specific example where waitForKeyElements doesn't reliably fire on change. My userscript ...
2
votes
2answers
325 views

How do you get a mutation observer to detect a value change of a textarea?

I have seen mutation observers used to obtain the properties of doms when they are modified such as with the google chrome developer tools. I can't, however, find how to call a function when the text ...
0
votes
0answers
77 views

Is MutationRecord.oldValue something I should be using?

I'm using the latest Google Chrome stable (19.0.1084.56 m) on Windows 7 and experimenting with Mutation observers for the first time. (The project is a user script for a third party website, the ...
0
votes
0answers
89 views

How to get the node position of the element removed from DOMNodeRemoved event

I'm trying to determine the document position of the node that is removed from the DOMNodeRemoved event. However, since it is the element being removed, the node no longer holds its previousSibling ...
4
votes
1answer
134 views

Blacklist DOM elements with Mutation Observers

I would like to use Mutation Observers in Chrome to monitor DOM changes in the entire document. However, I would like to blacklist specific elements with certain id's. Is there a way to do this?
1
vote
1answer
305 views

Mutation Obervers in Chrome are not detecting attribute and css changes

I am in Chrome 19 and I created a new mutation observer object: var observer = new WebKitMutationObserver(function(mutations, observer) { console.log(mutations, observer); }); And then I observe: ...
3
votes
2answers
1k views

What's the state of cross-browser support for DOM Mutation Observers?

I googled but couldn't find an answer. Is there a cross-browser compatibility matrix available for this feature? In case anybody wants to know answer, here it is: Mutation Observers vs Mutation ...
1
vote
1answer
321 views

Need clarification on MutationObserver APIs

W3C is proposing MutationObserver APIs to replace Mutation Event APIs. More info here : http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html#mutation-observers. I have a newbie question about the ...
2
votes
1answer
455 views

Mutation Observers---subtree

I am reading this http://lists.w3.org/Archives/Public/public-webapps/2011JulSep/1622.html and it seems that Chrome's behavior contrasts to specification. If I understood the specs correctly, defining ...
9
votes
1answer
2k views

Webkit Mutation Observer callback not triggered when select box attribute's change

I am trying to monitor changes to select box (or nested option elements) with new Mutation Observer functionality. However, only "setAttribute" is triggering mutation observer's callback for me. ...