Side navigation
#10984 closed bug (fixed)
Opened December 09, 2011 10:15AM UTC
Closed December 14, 2011 02:42AM UTC
Last modified March 02, 2012 03:23PM UTC
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: | ||
| Blocked by: | Blocking: | 
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
Attachments (0)
Change History (5)
Changed December 09, 2011 02:51PM UTC by comment:1
Changed December 09, 2011 03:01PM UTC by comment:2
| component: | unfiled → event | 
|---|---|
| milestone: | None → 1.7.2 | 
| owner: | → dmethvin | 
| priority: | undecided → high | 
| status: | new → assigned | 
Verified, here's a simpler test case:
The demo was a bit flawed and not so understandable.
This should be better: http://jsfiddle.net/Y3jpM/5/