You can trigger an event on everything that has a handler bound like this:
$.event.trigger('customEvent');
This loops through $.cache to find what actually has a handler, then fires on those elements...rather than just finding every element and firing the event on each one.