I have a table with multiple columns. Each of them has an image in which it has an onmouseover / onmouseout event, which shows the message in a div and hides the message.
My problem is that after the user quickly moves from left to right on top of a large number of images, all mouse and mouse events that look silly are executed ...
Is it possible to reorder the internal event stack to avoid this, so that the user only executes the current event (basically the first), and then the last, if it is not the same type?
For example, if the overlay over the first image is performed, and the position of the mouse move stops over the image three times next to the first. I can avoid all other events, because the mouse stopped above the image, and the mouse is similar to the one where I stopped with the mouse.
How can I avoid this multiple run?
source
share