Displaying 1 result from an estimated 1 matches for "myboundhandler1".
Did you mean:
myboundhandler
2005 Aug 31
0
Event listener problems
...ve events). Safari and IE6 seemed to be OK with this but
Firefox was not so happy. Mainly it was not giving me all the
events, as if one listener had bumped off the others. Making four
separate bindings and registering them for the different events
seemed to get things going again.
this.myboundhandler1 = this.handlermethod.bindAsEventListener(this);
this.myboundhandler2 = this.handlermethod.bindAsEventListener(this);
...
Event.observe(document, "mouseout", this.myboundhandler1);
Event.observe(document, "mousemove", this.myboundhandler2);
...
But even after all that it only se...