jquery live not receiving data

jquery live not receiving data


Ticket #4532 (Live event handlers don't receive custom event data) is
closed but I just downloaded nightly and the bug seems to still be
present for me.
In the fix that closed #4532 http://dev.jquery.com/ticket/4532 the
following line in liveHandler:
if ( this.fn.call(this.elem, event, this.fn.data) === false )
was changed to:
if ( this.fn.apply(this.elem, args) === false )
where args is equal to arguments and set towards the top. When I make
this change, everything works as expected, but somewhere between
changeset #6325 http://dev.jquery.com/changeset/6325 and now it
appears to have regressed.
I put a quick demo page up:
http://static.railstips.org/jquery-bug/
If I'm doing something wrong in the demo, let me know. It seems like
what I'm doing is intended behavior and that it isn't working because
of a bug.