tags:

views:

31

answers:

0

I'm using this jQuery tooltip: http://code.drewwilson.com/entry/tiptip-jquery-plugin and when using it it's not showing the black background or the arrow that should point. Here is the folder with the file I have and the html code:

alt text

<html>
    <head>
        <link rel="stylesheet" type="text/css" href="tipTip.css" />
        <script src="jquery-1.4.2.js"></script>
        <script src="jquery.tipTip.minified.js"></script>
    </head>
    <body>
    <script type="text/javascript">
        $(function(){
            $(".someClass").tipTip();
        });
    </script>
        <a href="#" class="someClass" title="This will show up in the TipTip popup.">Test</a>
    </body>
</html>

NOTE: The fade in, fade out is working; the black background isn't.

Thanks a bunch for all the help!