1.3b2 - live event delegation doesn't work with objects

1.3b2 - live event delegation doesn't work with objects


I searched in this mailing list and other also bug tracker but cannot
find a discussion of this. There's no documentation for the live
method so I assume this is a bug.
Here's the simplest case
$(function(){
// this does not work
$(document.body).live('click',function(){
alert('works!');
});
// this doesn't either
$($('body')).live('click',function(){
alert('works!');
});
// this works
$('body').live('click',function(){
alert('works!');
});
});