$.delegate - support for multiple bindings

$.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:
  1. $(".myComponent")
  2.   .delegate(
  3.     ".myButton",
  4.     {
  5.       click: function(e){
  6.         },
  7.       hover: function(e) {
  8.         }

  9.     }
  10.   )