My application has dynamically added Dropdowns. The user can add as many as they need to.

I was traditionally using jQuery's live() method to detect when one of these Dropdowns was change()ed:

$('select[name^="income_type_"]').live('change', function() {
    alert($(this).val());
});

As of jQuery 1.7, I've updated this to:

$('select[name^="income_type_"]').on('change', function() {
    alert($(this).val());
});

Looking at the Docs, that should be perfectly valid (right?) - but the event handler never fires. Of course, I've confirmed jQuery 1.7 is loaded and running, etc. There are no errors in the error log.

What am I doing wrong? Thanks!

link|improve this question

feedback

1 Answer

up vote 30 down vote accepted

The on documentation states (in bold ;)):

Event handlers are bound only to the currently selected elements; they must exist on the page at the time your code makes the call to .on().

Equivalent to .live() would be something like

$(document.body).on('change', 'select[name^="income_type_"]', function() {
    alert($(this).val());
});

Although it is better if you bind the event handler as close as possible to the elements, that is, to an element being closer in the hierarchy.

Update: While answering another question, I found out that this is also mentioned in the .live documentation:

Rewriting the .live() method in terms of its successors is straightforward; these are templates for equivalent calls for all three event attachment methods:

$(selector).live(events, data, handler);                // jQuery 1.3+
$(document).delegate(selector, events, data, handler);  // jQuery 1.4.3+
$(document).on(events, selector, data, handler);        // jQuery 1.7+
link|improve this answer
Feel a bit silly now, did read them but was in panicky-programmer-mode and only searched for the important bits ;) Thanks! – Jack Webb-Heller Nov 5 '11 at 16:21
2  
@Jack: No worries, IMO it's a good question. I assume others will stumble over this as well when they try to convert all the bind, live and delegate calls to on. – Felix Kling Nov 5 '11 at 16:30
1  
Ah yes, and of course we only see this answer after running a blanket find and replace from .live > .on – ajbeaven Nov 7 '11 at 23:06
IMO, the .on syntax is more logical, since the listener is actually attached to the selector that you provide. When the event is triggered, jQuery traverses the DOM and executes handlers where specified (simple event delegation). .live suggested that there was something "magical" that happened, and it was said to attach event handlers for "future elements" which wasn’t entirely true. – David Dec 12 '11 at 17:15
1  
@FelixKling that is correct - I stumbled across this also! Thanks – cosmicbdog Apr 5 at 3: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.