Hello, the issue you're facing is likely due to the way event handling is set up in your HTML string. When you add the onmouseover event for the tooltip, it may interfere with the onmouseout event if the tooltip is being created in a way that keeps the mouse over the image. I think you can delay the execution of mouseMovedFromItem using setTimeout, which can help ensure that the mouse has truly left the area:
javascript
var item = "<img class='thumb' ... "
+ " onmouseout='setTimeout(mouseMovedFromItem(" + eventId + "), 100)' "
+ " onmouseover='createTooltip(this, " + eventId + ")' "
+ " onClick='fly(" + eventId + ")' "
+ ">";
116.96.47.14
If your question is related to the topic of this post, you can post your question to this page by clicking the "Post a reply" button at left;
If your question is related to the Javascript Tooltip, click:
Ask new question: Javascript TooltipOtherwise navigate to one of the following forum categories, and post your question there.
##