jQuery 1.4.1 doesn't handle live namespaced events

jQuery 1.4.1 doesn't handle live namespaced events

In jQuery 1.3.2 you could create live namespaced events by doing this:

  1. $('div').live('click.name', function(){ console.log('hello'); });

In jQuery 1.4.1 this results in the event never firing.

Looks like this is missed in the test cases.  We probably need to test adding and removing live namespaced events.

Looks like someone has already created a ticket for this:
http://dev.jquery.com/ticket/5945