I really like using .live() in jQuery for click() focus() blur() and other interaction events.
I do a lot of prototyping, so I find it gives me great flexibility if I want to dynamically add elements. For that reason, I find myself drawn to the idea of using it by default all the time. Is this a good idea, or is this bad performance?
Does using .live('click',function(){})
slow things down in a way that .click(function(){})
doesn't?