Modify ↓
Ticket #10984 (closed bug: fixed)
Cannot off() custom events ($.event.special)
| Reported by: | njam | Owned by: | dmethvin |
|---|---|---|---|
| Priority: | high | Milestone: | 1.7.2 |
| Component: | event | Version: | 1.7.1 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
Hi,
I'm trying to unbind a "custom event" ($event.special) with off(). This doesn't seem to work, if I supply the original callback in addition to the event-name:
$(".bar").off("clickFoo"); // works
$(".bar").off("clickFoo", fn); // doesn't work
Demo: http://jsfiddle.net/Y3jpM/2/
Is this a bug, or am I doing something wrong?
Sincerely
Change History
comment:2 Changed 18 months ago by dmethvin
- Owner set to dmethvin
- Priority changed from undecided to high
- Status changed from new to assigned
- Component changed from unfiled to event
- Milestone changed from None to 1.7.2
Verified, here's a simpler test case:
comment:3 Changed 18 months ago by Dave Methvin
- Status changed from assigned to closed
- Resolution set to fixed
Fix #10984. Use origType when unbinding via the event object.
Changeset: c584ce4f562536a282c6ccfd78d5d12080850517
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.

The demo was a bit flawed and not so understandable. This should be better: http://jsfiddle.net/Y3jpM/5/