$.delegate - support for multiple bindings
According to the API documentation, $.delegate supports an eventType string containing different events, but there is only one handler parameter. I propose that you add an option to send multiple handlers in one call - something like this:
- $(".myComponent")
- .delegate(
- ".myButton",
- {
- click: function(e){
- },
- hover: function(e) {
- }
- }
- )