Bug Tracker

Opened 12 years ago

Closed 12 years ago

#10873 closed bug (invalid)

live does not work with elements got from using each function

Reported by: anonymous Owned by: anonymous
Priority: low Milestone: None
Component: event Version: 1.7.1
Keywords: Cc:
Blocked by: Blocking:

Description

example:

$('a').each(function(i. elt) {

$(elt).live('click', function() {

console.log('Not a bug!!');

});

});

Change History (2)

comment:1 Changed 12 years ago by addyosmani

Component: unfiledevent
Owner: set to anonymous
Priority: undecidedlow
Status: newpending

Thanks for submitting a ticket to the jQuery bug tracker. Could you please also provide us with a complete test case on jsFiddle that reproduces the issues you're experiencing? It would also be great if you could test with jQuery edge.

comment:2 Changed 12 years ago by ajpiano

Resolution: invalid
Status: pendingclosed

This is documented behaviour, live does not work against arbitrary collections, including those made from DOM element references, it only works directly after a string selector.

"Chaining methods is not supported. For example, $("a").find(".offsite, .external").live( ... ); is not valid and does not work as expected."

http://api.jquery.com/live/

Furthermore, 'a' elements that are already on the page and then trying to make a .live call against them doesn't really make much sense, as it kind of defeats the point of "working with future elements" conceptually.

Note: See TracTickets for help on using tickets.