jQuery 1.4 multiple bind syntax with live?

jQuery 1.4 multiple bind syntax with live?

Morning peoples.

I am in the process of porting an application i have been building for a couple of years to jQuery from jquery/prototypejs&scriptaculous.


Reading the new documentation i see that bind can take multiple observers (for example)

$("div.test").bind({
click: function(){
$(this).addClass("active");
},
mouseenter: function(){
$(this).addClass("inside");
},
mouseleave: function(){
$(this).removeClass("inside");
}
});










Is this also true with "live" ( i am adding alot of dynamic elements to a page that have tooltips attached to them and have written a simple tooltip plugin that uses live to stop me constantly needing to call the plugin everytime somehting on the page changes to do with the tooltip..


Thanks in advance.


PS. adding this question was really slow and resource hungry it rocketd my CPU to 100% (is anyone aware of this)!