jQuery ToolTip, doesn't work... why??
Hello guys,
let me first show you what i'm talking about.
I've downloaded latest jquery and the plugin and uploaded both in /js/ folder
Now, some simple code:
- <script type="text/javascript" src="./js/jquery.js"></script>
- <script type="text/javascript" src="./js/jquery.tipTip.js"></script>
-
- <script type="text/javascript">
- // TOOOLTIPPING
- $(".hyperlink").tipTip({maxWidth: "auto", edgeOffset: 10});
- </script>
- </head>
I've included jquery and plugin pages into the html page, now, as shown in the plugin page i set up the class to be called in order to show the tooltip restyled.
- <p id="home-first">My name is <a class="hyperlink" href="./about.htm" title="Check out here if you want to know more About Me">Jacopo Nardiello</a><br />
-
- <script type="text/javascript" src="./js/jquery.js"></script>
- <script type="text/javascript" src="./js/jquery.tipTip.js"></script>
-
- <script type="text/javascript">
- // TOOOLTIPPING
- $(".hyperlink").tipTip({maxWidth: "auto", edgeOffset: 10});
- </script>
- </head>
-
- <p id="home-first">My name is <a class="hyperlink" href="./about.htm" title="Check out here if you want to know more About Me">Jacopo Nardiello</a><br />
Well, it doesn't work.
PS: i'm a SUPER newbie with jquery, first time using it in my life. I'm not scared by code lines as i'm pretty confident with PHP and C but just assume i know nothing about JS.
Thanks in advance for the help