At the moment I have an image, and when the user puts their mouse over it, using Jquery I place a transparent div over the image. The problem is that this triggers the mouseout event. I want the transparent div to leave when the mouse moves away from the image. What is the best way to detect this if there is a transparent div covering the image. Hope that made at least some sense.

link|improve this question

feedback

4 Answers

up vote 1 down vote accepted

Assuming the div is the same size as the image, you could hide the div on the div's own mouseout event.

link|improve this answer
Thanks, can't believe that after half an hour of head scratching that never crossed my mind, it's so simple. Thanks a lot – Lobe Dec 13 '09 at 7:17
I'm glad it was that simple! – Greg Dec 13 '09 at 7:19
feedback

add the mouseOut listener to the div instead.

link|improve this answer
feedback

There are some plugins available to do this trick (captions on mouse-over) like:

http://buildinternet.com/2009/03/sliding-boxes-and-captions-with-jquery/

http://www.chazzuka.com/blog/?p=138

link|improve this answer
Those are some slick ways to show captions! – Greg Dec 13 '09 at 8:02
feedback

Check out mouseenter rather than mouseleave. If you wrap the image and the transparent div inside a containing div, then look for mouseenter on that div, you will get the desired behaviour. Mouseenter behaviour bubbles up through child elements, and sounds like exactly what you need.

Mouseenter from JQuery API site

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.