DOMNodeInserted event is called when the node "be appended to", or "be appended"?

I ask this because the following code:

function AddTextToContainer () {
    var textNode = document.createTextNode ("My text");
    var container = document.getElementById ("container");

    if (container.addEventListener) {
        container.addEventListener ('DOMNodeInserted', OnNodeInserted, false);
    }
    container.appendChild (textNode);
}

and that:

function AddTextToContainer () {
   var textNode = document.createTextNode ("My text");
   var container = document.getElementById ("container");

   if (textNode.addEventListener) {
       textNode.addEventListener ('DOMNodeInserted', OnNodeInserted, false);
   }
   container.appendChild (textNode);
}

Both invoke OnNodeInserted in Chrome. Is it a bug?

link|improve this question

72% accept rate
feedback

2 Answers

up vote 4 down vote accepted

This is from W3C

DOMNodeInserted
Fired when a node has been added as a child of another node. 
This event is dispatched after the insertion has taken place. 
The target of this event is the node being inserted.
Bubbles: Yes
Cancelable: No
Context Info: relatedNode holds the parent node

The key is the Bubbles: Yes - thats why its being fired on the container as well.

link|improve this answer
feedback

If you want to prevent the event from bubbling up just use event.stopPropagation(); in your text node callback. Events are then no longer handled up the dom tree.

link|improve this answer
event.stopPropagation() doesn't seem to have any effect for me. The event is still firing for children of the target. I have worked around it by checking that event.target is the object I think it is. – chaiguy May 14 at 21:41
feedback

Your Answer

 
or
required, but never shown

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