Я использую эту подсказку: http://flowplayer.org/tools/demos/tooltip/index.html
В моем html-файле есть следующие строки:
<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>
В моем файле home.js есть следующая строка:
$("#boo img[title]").tooltip();
У меня есть следующая строка в моем css-файле:
.tooltip {
display:none;
background:transparent url(/tools/img/tooltip/black_arrow.png);
font-size:12px;
height:70px;
width:160px;
padding:25px;
color:#fff;
}
Я получаю эту ошибку:
Uncaught TypeError: Object [object Object] has no method 'tooltip'
Я в своем уме.Я чувствую, что точно следовал примеру на сайте, но понятия не имею, что происходит.