jQuery .on() method doesn't see new elements jQuery .on() method doesn't see new elements javascript javascript

jQuery .on() method doesn't see new elements


You are not using the correct code to get live functionality.

$('#title-items').on('click', 'a', function(e) {    alert('clicked');    e.preventDefault();});
  1. First, select your common ancestor element (#title-items in this example). You can use document here too if you want to handle all a elements.
  2. Pass the event type (on), then the sub selector (a), and then the callback function for the event.

Now, when click events bubble up to #title-items, it will check to see if the element is an a element, and if so, fire the callback.


You want to use event delegation to capture events triggered on events that are present in the DOM at any point in time:

$(<root element>).on('click', 'a', function(e) {    alert('clicked');    e.preventDefault();});

UPDATE - In this example the <root element> is an ancestor of the links to which you are binding that is present in the DOM at the time of binding.

The basic idea is that since we can't attach an event handler to a DOM element not yet in the DOM, we attach the event handler to an ancestor element and wait for the event to bubble up to the ancestor element. Once the event reaches the ancestor event the event.target property is checked to see what was the originally clicked element.


You can use the arrive.js library (it uses MutationObserver internally).

document.arrive('a', function(){    // 'this' refers to the newly created element    var newElem = this;});