Bug Tracker

Opened 14 years ago

Closed 13 years ago

#5458 closed bug (duplicate)

$.fn.trigger fails to apply extra data to callback for live events

Reported by: micah Owned by: brandon
Priority: major Milestone: 1.4
Component: event Version: 1.3.2
Keywords: live, trigger, bind, arguments, data Cc:
Blocked by: Blocking:

Description

To reproduce:

$('body').bind('works', function(e, data) {
    console.log('proper args: ', arguments);
}).trigger('works', ['arg2', 'arg3']);

$('body').live('borked', function(e, data) {
    console.log('wrong args: ', arguments);
}).trigger('borked', ['arg2', 'arg3']);

Note that arg2 and arg3 are not passed to the callback for the live event but work properly on the regularly bound one.

Change History (2)

comment:1 Changed 14 years ago by micah

Whoops, dupe of #4532

comment:2 Changed 13 years ago by addyosmani

Resolution: duplicate
Status: newclosed

Closing due to duplicate.

Note: See TracTickets for help on using tickets.