I know it’s not possible to bind to all DOM events and I know you can bind to multiple events by supplying a space-separated list.
But is it possible to bind to all custom events (preferably filtered by a wildcard pattern like ‘abc*’ or name-space)?
Edit:
To clarify, I have created some custom widgets that respond to some custom events. For example, they all handle an event called stepReset and resets their internal models.
After I’ve written these, I realized events don’t bubble down, so the call $(body).trigger('stepReset') basically does nothing. As a result, I am considering adding an umbrella event handler on all widgets’ parent elements to propagate all relevant events down.
(I know this is not an elegant solution, but I forgot to tag elements with handlers with a common class, so there’s no easy way to use select them all.)
With regards to your upcoming edit, you can retrieve all bound events by accessing the object’s data:
From here, you can iterate over the resulting object and check each property for your chosen wildcard character, or iterate over that property’s array elements and check the
namespaceproperty of each.For instance,
If I understood you correctly,you can iterate over the special events object to get a list of custom events (including those specified in the jQuery source code). Here’s an ES5 example, you will need to adapt it yourself for older browsers or use a polyfill forObject.keys: