Opened 11 years ago
Closed 11 years ago
#11845 closed bug (invalid)
"live" inconsistent behavior with
Reported by: | ( axl ) ( dot ) ( ayco ) ( at ) ( gmail ) ( dot ) ( com ) | Owned by: | |
---|---|---|---|
Priority: | low | Milestone: | None |
Component: | event | Version: | 1.7.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Good morning.
I have found a bug using a multiple selector nested under a second+parameter selector when you later use live().
It's simple, if you use a selector like this $(".foo, .bar", baz); selects all .foo and .bar inside baz,
but if you use that selector to attach events with live() $(".foo, .bar", baz).live("click", function(){alert("yeah");}); attaches the event to all .foo inside baz, and TO ALL .bar IN THE DOCUMENT
You can test it here: http://jsfiddle.net/7eawe/1/ Tested under Chrome 19, FF12, IE8 and IE8 in IE7 compatibility mode.
Regards
Change History (1)
comment:1 Changed 11 years ago by
Component: | unfiled → event |
---|---|
Priority: | undecided → low |
Resolution: | → invalid |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
From live() docs:
$(".foo, .bar", baz); is the same thing as doing $(baz).find(".foo, .bar"), and thus not supported.
Also, please use delegation instead of live.