Modify ↓
Ticket #11196 (closed bug: invalid)
die() selector quote type order MUST match original live selector EXACTLY
| Reported by: | aowie1@… | Owned by: | |
|---|---|---|---|
| Priority: | undecided | Milestone: | None |
| Component: | unfiled | Version: | 1.6.4 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
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
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
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.