views:

34

answers:

0

I am using jquery 1.3.2 and qtip 1.0.0-rc3

works fine but there is one strange issue for IE6 I am facing. when I take my mouse on the element (< a > in my case), the tooltip appears fine, but when I take my mouse away from the element, the tooltip fades away without problem but my screen starts getting bigger vertically... as if there are divs being added at the bottom of the page... and it it does not stop... the div keeps on getting added, as if there is a script running to append it at the bottom of the page.

This just happens in ie6 so I am not able to debug it more, and unable to see the generated html. Has anybody faced a similar issue?

here is the script I use

$('a[title]').qtip(
{
    style:
    {
        tip: true
    },
    position:
    {
        corner:
        {
            target: 'rightMiddle',
            tooltip: 'leftMiddle'
        }
    }
});

<a href="#" onclick="javascript: return false;" title="toolTipText">
 <img src="../image.png"/>
</a>