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>