I'd like to fire an event when an element is added to the document. I've read the JQuery documentation for on() and the list of events but none of the events seem to concern element creation.

I must monitor the DOM as I do not control when the element is added to the document (as my Javascript is a Chrome Extension content script)

link|improve this question

76% accept rate
feedback

2 Answers

For the simplest option, you might want to examine LiveQuery which is effectively the 'DOM listener' that you're after. It should be used with caution however, as it has the potential to be quite heavyweight, performance-wise.

If you're preferring to 'roll your own' - with .on() it should work for all current and future elements - but the added elements would need to match the selector. For example, if you wire an event up to all classes of .myClass and you then injected a new element of the same class to the DOM, the event should fire. Effectively, the .on() API rolls-up bind/live/delegate from prior versions of jQuery, the latter two of which work against current and future DOM elements.

link|improve this answer
Thanks @SpaceBison. What would rolling my own using on() entail? I'm happy to use livequery if it's necessary but would like to avoid plugins if possible. – nailer Dec 19 '11 at 12:14
1  
If you want to have custom events that trigger when an item is added, follow the answer of Luiz Fernando - if you JUST want to use the built-in events, but have them fire when an element is created, you'll need a selector that matches the elements that already exist and that will be created, and wire them up using on() - as long as the new elements match the selector the event will fire for any added elements as well as pre-existing. – SpaceBison Dec 20 '11 at 9:10
feedback

As a complement of @SpaceBison's answer, you can create your own events when you create these elements. For example:

function create_element() {
    // Create an element
    $( 'body' ).append( "<p>Testing..</p>" )
    // Trigger
    $( 'body' ).trigger( 'elementCreated' );
}
function monitor_elements() {
    $("body").on("elementCreated", function(event){
    alert('One more');
    });
}

$(document).ready(function(){

     monitor_elements();

     for (var i=0; i < 3; i++) {
         create_element();
     }

});

Live example: http://jsfiddle.net/9NsAh/

But of course, it's only usefull when you create your own elements.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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