I'm working on a website which is built in some heavy PHP framework.
So it already has included jQuery UI 1.8.16 library. Now I have to implement $(...).tooltip
functionality on one web page. This feature is not availabe in jQuery UI 1.8.16 but it is available in jQuery 1.9.2 .
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
So I included following line into the HTML file where I want to implement the $(...).tooltip
functionality. But still in firebug I got following error:
TypeError: $(...).tooltip is not a function
How to resolve this issue? Can someone please help me in this regard?