JQuery qTip not working in jquery-1.4.2?

I am using jQuery qTip plugin, but it does not work with the latest version of jquery (1.4.2)

It works great with 1.3.2.

What is the reason?

Thank you so much

UPDATE:

here is the simplest example that 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>

+3
source share
1 answer

Correctly, it seems that there is a bug with the latest version of qTip, theres part of the discussion about this . One of those who comment on this proposal suggested using a different version (build, independently) of the plugin .

jsFiddle, , , , 55 .

, .

+4

Source: https://habr.com/ru/post/1766940/


All Articles