Displaying 1 result from an estimated 1 matches for "myboundhandler".
Did you mean:
myboundhandler1
2005 Aug 31
0
Event listener problems
...ting on Firefox. I wanted to monitor mouseover,
mousemove, mouseout and mouseup. There was a lot of commonality to
the code so I made a single binding of my handler object to the
handler method and test for the event.type to handle any differnce
for event type. The binding was like
this.myboundhandler = this.handlermethod.bindAsEventListener(this);
and then registering this.myboundhandler four times (once for each of
the above 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...