I use this tooltip: http://flowplayer.org/tools/demos/tooltip/index.html
My html file has the following lines:
<script src="/javascripts/home.js" type="text/javascript"></script> <script src="http://cdn.jquerytools.org/1.2.6/jquery.tools.min.js" type="text/javascript"></script> <script type="text/javascript" src="/scripts/jquery.min.js"></script> <div id="boo"> <img src="image1.jpg" title="this thing is a tool"/> <img src="image2.jpg" title="this thing is also tool"/> </div>
I have the following line in my home.js file:
$("#boo img[title]").tooltip();
I have the following line in my css file:
.tooltip { display:none; background:transparent url(/tools/img/tooltip/black_arrow.png); font-size:12px; height:70px; width:160px; padding:25px; color:#fff; }
I get this error:
Uncaught TypeError: Object [object Object] has no method 'tooltip'
I'm crazy. I feel that I have definitely followed the example on the site, but I donโt know what is happening.
source share