zudolab jqTooltip

iframeLayer

IE6 user can't lap elements on select elements.
Because select elements igonore all positioned elements and come to the top layer.
See following examples.
(You can see what is wrong only when you use IE6 in this page)

If you use IE6, you can see what's wrong in 1st example.
In 2nd example, you can see that the problem was solved.
I recommend this function to be used only when it is necessary.

iframeLayer: false (default)

new jqTooltip({
    selector: "p.iframeLayerTest1",
    behavior: "chaseHover",
    offsetY: -100,
    height: "200px",
    iframeLayer: false
});

iframeLayerTest1

iframeLayer: true

new jqTooltip({
    selector: "p.iframeLayerTest2",
    behavior: "chaseHover",
    offsetY: -100,
    height: "200px",
    iframeLayer: true
});

iframeLayerTest1