Side navigation
#11196 closed bug (invalid)
Opened January 19, 2012 06:47PM UTC
Closed January 19, 2012 07:06PM UTC
die() selector quote type order MUST match original live selector EXACTLY
Reported by: | aowie1@gmail.com | 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
Attachments (0)
Change History (1)
Changed January 19, 2012 07:06PM UTC by comment:1
resolution: | → invalid |
---|---|
status: | new → closed |
Yes, as documented:
http://api.jquery.com/die/
And, also as documented,
.live()
and.die()
are deprecated.