Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Solved] qTip not working
28th June, 00:13
Post: #1
[Solved] qTip not working
I'm trying to implement a very easy qTip example. It works fine on jsFiddle, but I can't get it to work in IE or Chrome. I'm using jquery-1.3.2.min.js and jquery.qtip-1.0.0-rc3.min.js. I've also tried using jquery-1.6.1.min.js. Here is my code:

JS Code
<html>
<body>
<div id="content">
	<a href="#">text</a>
</div>
<script type="text/javascript">
$(document).ready(function()
{
   $("#content a[href]").qtip(
   {
		content: 'This is an active list element',
		show: 'mouseover',
		hide: 'mouseout'
   });
});
</script>
<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="jquery.qtip-1.0.0-rc3.min.js"></script>
</body>
</html>


Any help would be appreciated. Thanks!
Find all posts by this user
Quote this message in a reply
4th July, 14:17
Post: #2
RE: qTip not working
You can't create a qTip before you've loaded the library Wink The <script> tag order is important, so you need your .qtip() call below the qtip script include.

Craig Thompson
Web Developer / Designer
Craigsworks
http://www.craigsworks.com
Visit this user's website Find all posts by this user
Quote this message in a reply
4th July, 15:50
Post: #3
RE: [Solved] qTip not working
Geez. That fixed it. Sorry to have wasted your time.
Find all posts by this user
Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  qtip only working the first time harjits 2 24 Yesterday 23:31
Last Post: Craig
  Dynamic contenct not working property in sortable cleung 5 737 8th December 18:45
Last Post: Craig
  Youtube demo not working on ffox 6 & 7 ivanmayes 2 696 11th October 17:14
Last Post: ivanmayes
  [Solved] Why is this not working - Link nested in tooltip needed 1 546 12th September 17:10
Last Post: Craig
  [Solved] Blanket Destroy not working migdalskiy 2 512 22nd August 22:44
Last Post: migdalskiy
  Unfocus Not Working biglesliep 1 760 13th August 12:50
Last Post: Craig
  Simple working example? PeterY 2 957 7th August 20:18
Last Post: kiddailey
  very simple working example? solitario 3 2,641 7th August 20:16
Last Post: kiddailey
  styles and pointy position not working danbuntu 1 940 27th July 23:17
Last Post: Craig
  [Solved] qTip input fields validation not working with display:none Maverick 6 1,414 25th July 16:44
Last Post: Maverick



User(s) browsing this thread: 1 Guest(s)