views:

29

answers:

1

i'm using jQuery qTip plugin, but it doesn't work with latest version of jquery(1.4.2)

it works fine with 1.3.2.

What is the reason?

Thanks much

UPDATE:

here is the simplest example, which doesn't work

 ...
<head>
    <script type="text/javascript" src="javascript/jquery-1.4.2.js" ></script>
    <script type="text/javascript" src="javascript/jquery.qtip-1.0.0-rc3.min.js"></script>
    <script type="text/javascript">
    $(document).ready(function()
    {
        $("a").qtip({content: 'some text here'});
    });
    </script>
</head>
<body>
<a >example</a>
</body>

+1  A: 

Right so it looks like there is a bug with the latest version of qTip, theres a bit of a discussion about it. One of the people that comments back suggested using a different version (build, whatever) of the plugin.

I did just that and slapped it into jsFiddle and I can now see the tooltip, so perhaps you should download revision 55 and use that instead.

Hope that helps.

ILMV
Yes, it works fine with 1.0 version. Thanks much man:)
Syom