My problem results from the way the newest version of IE hadles mouseOver and mouseOut events. I use these functions to place text in a frame from the same link, that is, I change text on both the mouseOver and mouseOut events. The porblem is, when moving rapidly across links, IE ignores mouseOvers that follow quickly after mouseOuts.
I can solve the problem by delaying the initiation of the mouseOver by about 10 milleseconds, using a setTimeout delayed function. Since I have a few thousand links, it is not conveniet to write that many functions to handle this simple chore.
Is there some way to generally control event handlers, like mouseOver, such as delaying them for all events on a given page?
Thanks for the help!
Pat
I can solve the problem by delaying the initiation of the mouseOver by about 10 milleseconds, using a setTimeout delayed function. Since I have a few thousand links, it is not conveniet to write that many functions to handle this simple chore.
Is there some way to generally control event handlers, like mouseOver, such as delaying them for all events on a given page?
Thanks for the help!
Pat