You can use some dispatching mechanism, e.g.:
1. HTML: all your clickable elements have special class or attribute like
<a class="widget chooser">chooser</a>
or
<a data-widget-type="chooser">chooser</a>
2. JS: your single observer finds somehow your desired element and
dispatches event accordingly to the special class of element ("chooser" in
this sample)
var widgetType = element.readAttribute("data-widget-type") || "";
if (widgetType && Widgets[widgetType]) {
Widgets[widgetType].handleEvent(element);
}
--
You received this message because you are subscribed to the Google Groups
"Prototype & script.aculo.us" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/prototype-scriptaculous/-/tekiC8jpxlMJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/prototype-scriptaculous?hl=en.