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>
Simon source
share