passing params to .live

passing params to .live


Are we going to be able to pass parameters to the callback live
function like we can with event callback functions?
function foo(e) {
alert(e.data.bar);
}
$function(){
//This works right now:
$('a').bind('click', {bar:'fubar'}, foo);
//This doesn't:
$('a').live('click', {bar:'fubar'}, foo);
}