Can somebody tell me why this Jquery tooltip is not showing up?

Posted by alex on Stack Overflow See other posts from Stack Overflow or by alex
Published on 2010-03-23T18:00:05Z Indexed on 2010/03/23 18:03 UTC
Read the original article Hit count: 148

Filed under:
|
|
|
<link rel="stylesheet" type="text/css" href="jquery-tooltip/jquery.tooltip.css"/>
<script type="text/javascript" src="jquery-tooltip/jquery.tooltip.js"></script>


<div id="baby" title="My tootip">The text</div>
<script type="text/javascript">
$(function(){
    $('#baby').tooltip({
    track: true,
    delay: 0,
    showURL: false,
    showBody: " - ",
    extraClass: "pretty",
    fixPNG: true,
    opacity: 0.95,
    left: -120
});
});
</script>

The files are found, and they are not 404.

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about JavaScript