With the current style of extending the event object and using the
newly methods in prototype itself can lead to errors in internet
explorer. The reason being that, even though the event object is
extended if the observe element method was used, it is not when the
event was triggered from the attribute, like:

<input onclick="Event.stop(event)"/>

The above snippet will cause an error in IE due to the reason that the
event is never extended, since it doesn't go through the observe
wrapper.

A possible solution for this is to use the old syntax of
Event.method(event) inside prototype itself. Or call
Event.extend(event) at the beginning of each method.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Prototype: Core" group.
To post to this group, send email to prototype-core@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/prototype-core?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to