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>
$("#foo").live("click",function(e) {
e.preventDefault();
$(this).append($("<div />").html("new div").attr("id","bar"));
});
</script>
Before, I had mutation events listen for the creation of div#bar - something like this:
$("#bar").live("DOMNodeInserted", function(event) {
console.log("a new div has been appended to the page");
});
Is there an equivalent using Mutation Observers? I tried attrchange.js featured on Can you have a javascript hook trigger after a DOM element's style object changes? but that plugin only detects when an element has been modified, not when it's created.
When using jQuery, the usage of MutationObservers can be simplified as shown below.
Don't forget, the second argument to
.observe()
,MutationObserverInit
, is important:In the options, use
childList: true
if thespan
will only be added as a direct child.subtree: true
if it can be at any level down below#canvas
.From the docs:
childList
: Set totrue
if additions and removals of the target node's child elements (including text nodes) are to be observed.subtree
: Set totrue
if mutations to target and target's descendants are to be observed.