In YUI3, delegates perform this function. The following snippet launches a method called "clickHandler" on any "p" tag in the body.
YUI().use('event', function(Y) {
Y.delegate("click", clickHandler, "body", "p");
});
YUI 2.8.0 has a delegate , but the syntax is slightly different.
source
share