I\'m using this tooltip: http://flowplayer.org/tools/demos/tooltip/index.html
I have the following lines in my html file:
Wrap $("#boo img[title]").tooltip(); in $(function(){ }); so you end up with:
$(function(){
$("#boo img[title]").tooltip();
});
Why:
The $(function()... is a short cut to execute that code on the domReady event. So at that point all of the jquery files, and the page, will be loaded far enough for your javascript to work.