Event delegation with jQuery UI

Event delegation with jQuery UI


Hey Guys,
Wanted to let you know about an event delegation library that
interacts with jQuery UI that we've used to make interactive UI
elements with really clean code. We used it with jQuery Effects to
create scrolling widgets such as those on the homepage of http://javascriptmvc.com/.
It's called Controller (http://javascriptmvc.com/learningcenter/
controller/index.html) and it is an event delegation library that
helps logically organize your event handlers. It lets you define
event handlers that never have to be reattached, even if the HTML is
modified, which makes writing AJAX applications easier. Also,
controllers group event handlers for a specific set of HTML elements,
so you can clearly know your code's purpose.
There's a todo list demo at http://javascriptmvc.com/learningcenter/controller/demo.html.
Hope you find it as useful as we have.
- Brian Moschel