Bug Tracker

Opened 11 years ago

Closed 11 years ago

Last modified 11 years ago

#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:
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

Change History (5)

comment:1 Changed 11 years ago by njam

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

comment:2 Changed 11 years ago by dmethvin

Component: unfiledevent
Milestone: None1.7.2
Owner: set to dmethvin
Priority: undecidedhigh
Status: newassigned

Verified, here's a simpler test case:

http://jsfiddle.net/dmethvin/Y3jpM/6/

comment:3 Changed 11 years ago by Dave Methvin

Resolution: fixed
Status: assignedclosed

Fix #10984. Use origType when unbinding via the event object.

Changeset: c584ce4f562536a282c6ccfd78d5d12080850517

comment:4 Changed 11 years ago by dmethvin

#11133 is a duplicate of this ticket.

comment:5 Changed 11 years ago by dmethvin

#11428 is a duplicate of this ticket.

Note: See TracTickets for help on using tickets.