Hi, I was browsing through the new jQuery code and noticed that .live()always binds events to document. I was wondering whether it would bemore efficient to bind them on the context if present - ie. to preventevents from unnecessarily bubbling all the way up to document.so that:$('button', container).live('click', function(ev) { var button = this; ... ev.stopPropagation();});events are bound to 'container', and ...