Interfacing with legacy code, and I've got something like this:
Event.observe(some_form, 'submit', [some anonymous function])
I'd like to grab that anonymous event handler back out, is there an easy way to do that in Prototype?
|
Interfacing with legacy code, and I've got something like this:
I'd like to grab that anonymous event handler back out, is there an easy way to do that in Prototype?
| ||||
|
feedback
|
|
It depends on the version of Prototype. From a more general answer I wrote previously:
| |||||
feedback
|
|
If you actually want access to the handler, no, there's no easy way. You can of course stopObserving all prototype initiated handlers for an event type, but I don't think that's what you're looking for. | |||
|
feedback
|
|
If there aren't too many other listeners on
btw. what do you mean with
| |||
|
feedback
|