views:

194

answers:

2

I have a div, that I'm using JavaScript to position, so that when someone hovers over an image, it displays a tooltip message that follows along with the pointer. (Using tooltip-0.2.js )

The problem is that when a user goes to the page in IE6, a disabled dropdown box on the page is showing through this absolutely positioned tooltip when it tries to hover over it. How can I get this dropdownlist to know its proper place? ;)

+1  A: 

You can put an iframe element behind your layer to block such things from showing through. It will also block Flash objects from showing through. It's messy, but works.

rob
A: 

You better use another tooltip lib.

The "shining-through" effect is well known and other tooltips work around it.

I can't name a specific other tooltip lib.

edwin
Sadly, this is not an option--it would require stripping this lib from several other places in our website, and we're not ready to take such a step at this time.
Brisbe42