Opened 11 years ago
Closed 11 years ago
#11196 closed bug (invalid)
die() selector quote type order MUST match original live selector EXACTLY
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.6.4 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
if you bind a live event to a selector using something like
$("input[name='cancel']").live("click", function(){});
and then try to unbind it with die().. like
$('input[name="cancel"]').die();
it does NOT unbind that original bound event because the quote types are mismatched
Note: See
TracTickets for help on using
tickets.
Yes, as documented:
http://api.jquery.com/die/
And, also as documented,
.live()
and.die()
are deprecated.