Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

4 Answers

up vote 14 down vote accepted

Although Chrome does not dispatch DOMAttrModified events, the more lightweighted mutation observers are supported since 2011 and these work for attribute changes, too.

Here is an example for the document body:

var element = document.body, bubbles = false;

var observer = new WebKitMutationObserver(function (mutations) {
  mutations.forEach(attrModified);
});
observer.observe(element, { attributes: true, subtree: bubbles });

function attrModified(mutation) {
  var name = mutation.attributeName,
    newValue = mutation.target.getAttribute(name),
    oldValue = mutation.oldValue;

  console.log(name, newValue, oldValue);
}

For a simple attribute change, the console.log statement would print:

<body color="black">
<script type="text/html">
document.body.setAttribute("color", "red");
</script>
</body>

Console:

> color red black

share|improve this answer
It seems that this will currently not work in combination with the CSS3 "resize: both" property. The observer will not pick up changes to the element by the user dragging the resize handle. – cburgmer Aug 27 '12 at 10:33

If you are happy with merely detecting calls to setAttribute() (as opposed to monitoring all attribute modifications) then you could over-ride that method on all elements with:

Element.prototype._setAttribute = Element.prototype.setAttribute
Element.prototype.setAttribute = function(name, val) { 
 var e = document.createEvent("MutationEvents"); 
 var prev = this.getAttribute(name); 
 this._setAttribute(name, val);
 e.initMutationEvent("DOMAttrModified", true, true, null, prev, val, name, 2);
 this.dispatchEvent(e);
}
share|improve this answer

I was able to come up with something based on this http://www.west-wind.com/Weblog/posts/453942.aspx

share|improve this answer
In the example in that link - he shouldn't detect "DOMAttrModified" through browser check: $.browser.mozilla. this is incorrect. DOMAttrModified is also supported in Opera and IE9. He should rather do a simple check like here: stackoverflow.com/questions/4562354/… – ThatGuy Aug 5 '11 at 18:21
1  
I have just checked DOMSubtreeModified works well with all browsers, that should be used instead of timer, timer is bad and waste of CPU cycles, consider battery life and cpu usage. – Akash Kava Nov 14 '11 at 15:44
Which browsers did you check? – blockhead Nov 15 '11 at 4:14

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.

See: https://github.com/naugtur/insertionQuery

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.