Re: [jquery-dev] Event Delegation Plugin -- Needs feedback

2009-11-18 Thread Scott Sauyet
On Tue, Nov 17, 2009 at 10:06 PM, xwisdom wrote: > I've put together a little plugin that's based on Zach's $.live(). > [ ... ] > Check out the source code here: > http://raxanpdi.com/blog-jquery-event-delegate.html I think this is worth doing, but I'm trying to understand the advantage of your

[jquery-dev] Event Delegation Plugin -- Needs feedback

2009-11-17 Thread xwisdom
Hello, I've put together a little plugin that's based on Zach's $.live(). Usage: $(context).delegate('click',callback) // same as live() $(context).delegate('li:even, li:odd :click',callback) // supports multiple selectors $(context).delegate('li :click.namespace',callback) // s