<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[craigsworks.com - Support Forum - All Forums]]></title>
		<link>http://craigsworks.com/projects/forums/</link>
		<description><![CDATA[craigsworks.com - Support Forum - http://craigsworks.com/projects/forums]]></description>
		<pubDate>Fri, 30 Jul 2010 09:31:35 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Simple working example?]]></title>
			<link>http://craigsworks.com/projects/forums/thread-simple-working-example</link>
			<pubDate>Fri, 30 Jul 2010 02:31:05 -0700</pubDate>
			<guid isPermaLink="false">http://craigsworks.com/projects/forums/thread-simple-working-example</guid>
			<description><![CDATA[i am 3 hours in on this plugin and still can not get it to work.  tried different versions of jquery, verified all scripts are loading, tried inline styles, tried external styles.  painful.<br />
<br />
usually jquery plugins have an html example page that includes a very simple working example, sometimes even including the correct version of jquery in its path.  so you download it, doubleclick on the example.html file, and you have something working that you can then play with and migrate into your project.<br />
<br />
anyone know of something similar for qTip?  going through the forum here it does not look like i am the first to have this problem...<br />
<br />
thanks!<br />
<br />
peter]]></description>
			<content:encoded><![CDATA[i am 3 hours in on this plugin and still can not get it to work.  tried different versions of jquery, verified all scripts are loading, tried inline styles, tried external styles.  painful.<br />
<br />
usually jquery plugins have an html example page that includes a very simple working example, sometimes even including the correct version of jquery in its path.  so you download it, doubleclick on the example.html file, and you have something working that you can then play with and migrate into your project.<br />
<br />
anyone know of something similar for qTip?  going through the forum here it does not look like i am the first to have this problem...<br />
<br />
thanks!<br />
<br />
peter]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[qTip with jTemplate textarea]]></title>
			<link>http://craigsworks.com/projects/forums/thread-qtip-with-jtemplate-textarea</link>
			<pubDate>Thu, 29 Jul 2010 13:55:45 -0700</pubDate>
			<guid isPermaLink="false">http://craigsworks.com/projects/forums/thread-qtip-with-jtemplate-textarea</guid>
			<description><![CDATA[Hey qTip folks,<br />
<br />
I am trying to get the qTip "title" text displayed on mouse over. The code below works for me outside jTemplate. But within jTemplate it doesn't seem to work.<br />
<br />
&lt;script type="text/javascript" src="/projects/qtip/js/jquery.1.3.2.min.js"&gt;&lt;/script&gt;<br />
&lt;script type="text/javascript" src="http://www.cineplex.com/ecms.ashx/js/jquery.qtip-1.0.0-rc3.min.js"&gt;&lt;/script&gt;<br />
&lt;script class="example" type="text/javascript"&gt; <br />
// Create the tooltips only on document load<br />
&#36;(function()<br />
{<br />
   &#36;.fn.qtip.styles.toolTipStyle = { // Last part is the name of the style<br />
   		width: 390,<br />
	      padding: 10,	      <br />
	      background: '#f0ca43',<br />
	      color: 'black',	      <br />
	      textAlign: 'left',<br />
	      border: {<br />
	         width: 7,<br />
	         radius: 5,<br />
	         color: '#f0ca43'<br />
	      },<br />
	      tip: 'bottomLeft',<br />
	      name: 'dark' // Inherit the rest of the attributes from the preset dark style<br />
   }<br />
   // By suppling no content attribute, the library uses each elements title attribute by default<br />
   &#36;('#content a[href&#93;[title&#93;').qtip({<br />
      content: {<br />
         text: false // Use each elements title attribute<br />
      },<br />
      position: {<br />
      corner: {<br />
         target: 'topLeft',<br />
         tooltip: 'bottomLeft'<br />
       }<br />
     },	<br />
      style: 'toolTipStyle'         // Give it some style<br />
   });   <br />
});<br />
&lt;/script&gt; <br />
<br />
&lt;textarea id="jTemplateArea"&gt;<br />
{#template MAIN}<br />
&lt;div class="content"&gt;&lt;a href="#" title="titleText"&gt;<br />
Click Me to MouseOver&lt;/a&gt;&lt;/div&gt;<br />
{#/template MAIN}<br />
&lt;/textarea&gt;<br />
<br />
Any suggestions would be appreciated.<br />
<br />
Thanks a lot,<br />
Kart]]></description>
			<content:encoded><![CDATA[Hey qTip folks,<br />
<br />
I am trying to get the qTip "title" text displayed on mouse over. The code below works for me outside jTemplate. But within jTemplate it doesn't seem to work.<br />
<br />
&lt;script type="text/javascript" src="/projects/qtip/js/jquery.1.3.2.min.js"&gt;&lt;/script&gt;<br />
&lt;script type="text/javascript" src="http://www.cineplex.com/ecms.ashx/js/jquery.qtip-1.0.0-rc3.min.js"&gt;&lt;/script&gt;<br />
&lt;script class="example" type="text/javascript"&gt; <br />
// Create the tooltips only on document load<br />
&#36;(function()<br />
{<br />
   &#36;.fn.qtip.styles.toolTipStyle = { // Last part is the name of the style<br />
   		width: 390,<br />
	      padding: 10,	      <br />
	      background: '#f0ca43',<br />
	      color: 'black',	      <br />
	      textAlign: 'left',<br />
	      border: {<br />
	         width: 7,<br />
	         radius: 5,<br />
	         color: '#f0ca43'<br />
	      },<br />
	      tip: 'bottomLeft',<br />
	      name: 'dark' // Inherit the rest of the attributes from the preset dark style<br />
   }<br />
   // By suppling no content attribute, the library uses each elements title attribute by default<br />
   &#36;('#content a[href][title]').qtip({<br />
      content: {<br />
         text: false // Use each elements title attribute<br />
      },<br />
      position: {<br />
      corner: {<br />
         target: 'topLeft',<br />
         tooltip: 'bottomLeft'<br />
       }<br />
     },	<br />
      style: 'toolTipStyle'         // Give it some style<br />
   });   <br />
});<br />
&lt;/script&gt; <br />
<br />
&lt;textarea id="jTemplateArea"&gt;<br />
{#template MAIN}<br />
&lt;div class="content"&gt;&lt;a href="#" title="titleText"&gt;<br />
Click Me to MouseOver&lt;/a&gt;&lt;/div&gt;<br />
{#/template MAIN}<br />
&lt;/textarea&gt;<br />
<br />
Any suggestions would be appreciated.<br />
<br />
Thanks a lot,<br />
Kart]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[qTip + TypeKit]]></title>
			<link>http://craigsworks.com/projects/forums/thread-qtip-typekit</link>
			<pubDate>Wed, 28 Jul 2010 14:36:52 -0700</pubDate>
			<guid isPermaLink="false">http://craigsworks.com/projects/forums/thread-qtip-typekit</guid>
			<description><![CDATA[This may be beyond the scope of qTip support but I figured it can't hurt to ask.  <br />
<br />
I'm using <a href="http://www.typekit.com" target="_blank">TypeKit</a> in conjunction with qTip.  As expected, I'm getting the dreaded <a href="http://www.google.com/#hl=en&amp;q=flash+of+unstyled+text&amp;aq=f&amp;aqi=g1&amp;aql=&amp;oq=&amp;gs_rfai=&amp;pbx=1&amp;fp=6558b14e2d64664c" target="_blank">Flash of Unstyled Text (FOUT)</a> when Firefox initially loads the page, before TypeKit has a chance to substitute its fonts.  <br />
<br />
If it were on the initial page load, that's something that I could handle and there are numerous solutions available.  The problem I'm facing is when I mouseover an element which pops up a qTip, I'm getting the FOUT with every popup.<br />
<br />
Just in case it helps, here's the code I'm using for both:<br />
<br />
<div class="hl-main"><table class="hl-table" width="100%"><tr><td class="hl-gutter" align="right" valign="top"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
</pre></td><td class="hl-main" valign="top"><pre><span class="hl-code">&lt;</span><span class="hl-identifier">script</span><span class="hl-code"> </span><span class="hl-identifier">type</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">text/javascript</span><span class="hl-quotes">&quot;</span><span class="hl-code"> </span><span class="hl-identifier">src</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt;&lt;/</span><span class="hl-identifier">script</span><span class="hl-code">&gt;
&lt;</span><span class="hl-identifier">script</span><span class="hl-code"> </span><span class="hl-identifier">type</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">text/javascript</span><span class="hl-quotes">&quot;</span><span class="hl-code"> </span><span class="hl-identifier">src</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.min.js</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt;&lt;/</span><span class="hl-identifier">script</span><span class="hl-code">&gt;
&lt;</span><span class="hl-identifier">script</span><span class="hl-code"> </span><span class="hl-identifier">type</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">text/javascript</span><span class="hl-quotes">&quot;</span><span class="hl-code"> </span><span class="hl-identifier">src</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">http://ajax.microsoft.com/ajax/jquery.validate/1.7/jquery.validate.min.js</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt;&lt;/</span><span class="hl-identifier">script</span><span class="hl-code">&gt;
&lt;</span><span class="hl-identifier">script</span><span class="hl-code"> </span><span class="hl-identifier">type</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">text/javascript</span><span class="hl-quotes">&quot;</span><span class="hl-code"> </span><span class="hl-identifier">src</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">http://ajax.googleapis.com/ajax/libs/webfont/1.0.6/webfont.js</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt;&lt;/</span><span class="hl-identifier">script</span><span class="hl-code">&gt;
&lt;</span><span class="hl-identifier">script</span><span class="hl-code"> </span><span class="hl-identifier">type</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">text/javascript</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt;
</span><span class="hl-comment">//</span><span class="hl-comment">&lt;![CDATA[</span><span class="hl-comment"></span><span class="hl-code">
     </span><span class="hl-identifier">WebFont</span><span class="hl-code">.</span><span class="hl-identifier">load</span><span class="hl-brackets">(</span><span class="hl-brackets">{</span><span class="hl-code">
          </span><span class="hl-identifier">typekit</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-identifier">id</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">[my TypeKit ID&#93;</span><span class="hl-quotes">'</span><span class="hl-code"> </span><span class="hl-brackets">}</span><span class="hl-code">
     </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">;
</span><span class="hl-comment">//</span><span class="hl-comment">&#93;&#93;&gt;   </span><span class="hl-comment"></span><span class="hl-code">
&lt;/</span><span class="hl-identifier">script</span><span class="hl-code">&gt;
&lt;</span><span class="hl-identifier">script</span><span class="hl-code"> </span><span class="hl-identifier">type</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">text/javascript</span><span class="hl-quotes">&quot;</span><span class="hl-code"> </span><span class="hl-identifier">src</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">/js/jquery.qtip-1.0.0-rc3.min.js</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt;&lt;/</span><span class="hl-identifier">script</span><span class="hl-code">&gt;
&lt;</span><span class="hl-identifier">script</span><span class="hl-code"> </span><span class="hl-identifier">type</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">text/javascript</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt;
</span><span class="hl-comment">//</span><span class="hl-comment">&lt;![CDATA[</span><span class="hl-comment"></span><span class="hl-code">
    $</span><span class="hl-brackets">(</span><span class="hl-builtin">document</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">ready</span><span class="hl-brackets">(</span><span class="hl-reserved">function</span><span class="hl-code"> </span><span class="hl-brackets">(</span><span class="hl-brackets">)</span><span class="hl-code"> 
    </span><span class="hl-brackets">{</span><span class="hl-code">
        $.</span><span class="hl-identifier">fn</span><span class="hl-code">.</span><span class="hl-identifier">qtip</span><span class="hl-code">.</span><span class="hl-identifier">styles</span><span class="hl-code">.</span><span class="hl-identifier">win</span><span class="hl-code"> = </span><span class="hl-brackets">{</span><span class="hl-code">
            </span><span class="hl-identifier">width</span><span class="hl-code">: </span><span class="hl-number">400</span><span class="hl-code">,
            </span><span class="hl-identifier">padding</span><span class="hl-code">: </span><span class="hl-number">10</span><span class="hl-code">,
            </span><span class="hl-identifier">border</span><span class="hl-code">:
            </span><span class="hl-brackets">{</span><span class="hl-code">
                </span><span class="hl-identifier">width</span><span class="hl-code">: </span><span class="hl-number">5</span><span class="hl-code">,
                </span><span class="hl-identifier">radius</span><span class="hl-code">: </span><span class="hl-number">0</span><span class="hl-code">,
                </span><span class="hl-identifier">color</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">#c5e9ff</span><span class="hl-quotes">'</span><span class="hl-code">
            </span><span class="hl-brackets">}</span><span class="hl-code">,
            </span><span class="hl-identifier">tip</span><span class="hl-code">:
            </span><span class="hl-brackets">{</span><span class="hl-code">
                </span><span class="hl-identifier">size</span><span class="hl-code">:
                </span><span class="hl-brackets">{</span><span class="hl-code">
                    </span><span class="hl-identifier">x</span><span class="hl-code">: </span><span class="hl-number">10</span><span class="hl-code">,
                    </span><span class="hl-identifier">y</span><span class="hl-code">: </span><span class="hl-number">10</span><span class="hl-code">
                </span><span class="hl-brackets">}</span><span class="hl-code">
            </span><span class="hl-brackets">}</span><span class="hl-code">,
            </span><span class="hl-identifier">name</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">light</span><span class="hl-quotes">'</span><span class="hl-code">
        </span><span class="hl-brackets">}</span><span class="hl-code">
        $</span><span class="hl-brackets">(</span><span class="hl-quotes">&quot;</span><span class="hl-string">.tip-right-event</span><span class="hl-quotes">&quot;</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">each</span><span class="hl-brackets">(</span><span class="hl-reserved">function</span><span class="hl-code"> </span><span class="hl-brackets">(</span><span class="hl-brackets">)</span><span class="hl-code"> 
        </span><span class="hl-brackets">{</span><span class="hl-code">
            $</span><span class="hl-brackets">(</span><span class="hl-reserved">this</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">qtip</span><span class="hl-brackets">(</span><span class="hl-code">
            </span><span class="hl-brackets">{</span><span class="hl-code">
                </span><span class="hl-identifier">content</span><span class="hl-code">:
                </span><span class="hl-brackets">{</span><span class="hl-code">
                    </span><span class="hl-identifier">url</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">tooltip_event.aspx</span><span class="hl-quotes">'</span><span class="hl-code">,
                    </span><span class="hl-identifier">data</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-identifier">id</span><span class="hl-code">: $</span><span class="hl-brackets">(</span><span class="hl-reserved">this</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">attr</span><span class="hl-brackets">(</span><span class="hl-quotes">'</span><span class="hl-string">title</span><span class="hl-quotes">'</span><span class="hl-brackets">)</span><span class="hl-code"> </span><span class="hl-brackets">}</span><span class="hl-code">,
                    </span><span class="hl-identifier">method</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">post</span><span class="hl-quotes">'</span><span class="hl-code">
                </span><span class="hl-brackets">}</span><span class="hl-code">,
                </span><span class="hl-identifier">position</span><span class="hl-code">:
                </span><span class="hl-brackets">{</span><span class="hl-code">
                    </span><span class="hl-identifier">corner</span><span class="hl-code">:
                    </span><span class="hl-brackets">{</span><span class="hl-code">
                        </span><span class="hl-identifier">target</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">rightMiddle</span><span class="hl-quotes">'</span><span class="hl-code">,
                        </span><span class="hl-identifier">tooltip</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">leftMiddle</span><span class="hl-quotes">'</span><span class="hl-code">
                    </span><span class="hl-brackets">}</span><span class="hl-code">
                </span><span class="hl-brackets">}</span><span class="hl-code">,
                </span><span class="hl-identifier">style</span><span class="hl-code">:
                </span><span class="hl-brackets">{</span><span class="hl-code">
                    </span><span class="hl-identifier">tip</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">leftMiddle</span><span class="hl-quotes">'</span><span class="hl-code">,
                    </span><span class="hl-identifier">name</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">win</span><span class="hl-quotes">'</span><span class="hl-code">
                </span><span class="hl-brackets">}</span><span class="hl-code">
            </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">
        </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">
        $</span><span class="hl-brackets">(</span><span class="hl-quotes">&quot;</span><span class="hl-string">.tip-left-event</span><span class="hl-quotes">&quot;</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">each</span><span class="hl-brackets">(</span><span class="hl-reserved">function</span><span class="hl-code"> </span><span class="hl-brackets">(</span><span class="hl-brackets">)</span><span class="hl-code"> 
        </span><span class="hl-brackets">{</span><span class="hl-code">
            $</span><span class="hl-brackets">(</span><span class="hl-reserved">this</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">qtip</span><span class="hl-brackets">(</span><span class="hl-code">
            </span><span class="hl-brackets">{</span><span class="hl-code">
                </span><span class="hl-identifier">content</span><span class="hl-code">:
                </span><span class="hl-brackets">{</span><span class="hl-code">
                    </span><span class="hl-identifier">url</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">tooltip_event.aspx</span><span class="hl-quotes">'</span><span class="hl-code">,
                    </span><span class="hl-identifier">data</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-identifier">id</span><span class="hl-code">: $</span><span class="hl-brackets">(</span><span class="hl-reserved">this</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">attr</span><span class="hl-brackets">(</span><span class="hl-quotes">'</span><span class="hl-string">title</span><span class="hl-quotes">'</span><span class="hl-brackets">)</span><span class="hl-code"> </span><span class="hl-brackets">}</span><span class="hl-code">,
                    </span><span class="hl-identifier">method</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">post</span><span class="hl-quotes">'</span><span class="hl-code">
                </span><span class="hl-brackets">}</span><span class="hl-code">,
                </span><span class="hl-identifier">position</span><span class="hl-code">:
                </span><span class="hl-brackets">{</span><span class="hl-code">
                    </span><span class="hl-identifier">corner</span><span class="hl-code">:
                    </span><span class="hl-brackets">{</span><span class="hl-code">
                        </span><span class="hl-identifier">target</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">leftMiddle</span><span class="hl-quotes">'</span><span class="hl-code">,
                        </span><span class="hl-identifier">tooltip</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">rightMiddle</span><span class="hl-quotes">'</span><span class="hl-code">
                    </span><span class="hl-brackets">}</span><span class="hl-code">
                </span><span class="hl-brackets">}</span><span class="hl-code">,
                </span><span class="hl-identifier">style</span><span class="hl-code">:
                </span><span class="hl-brackets">{</span><span class="hl-code">
                    </span><span class="hl-identifier">tip</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">rightMiddle</span><span class="hl-quotes">'</span><span class="hl-code">,
                    </span><span class="hl-identifier">name</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">win</span><span class="hl-quotes">'</span><span class="hl-code">
                </span><span class="hl-brackets">}</span><span class="hl-code">
            </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">
        </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">
        $</span><span class="hl-brackets">(</span><span class="hl-quotes">&quot;</span><span class="hl-string">.tip-right-nextstep</span><span class="hl-quotes">&quot;</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">each</span><span class="hl-brackets">(</span><span class="hl-reserved">function</span><span class="hl-code"> </span><span class="hl-brackets">(</span><span class="hl-brackets">)</span><span class="hl-code"> 
        </span><span class="hl-brackets">{</span><span class="hl-code">
            $</span><span class="hl-brackets">(</span><span class="hl-reserved">this</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">qtip</span><span class="hl-brackets">(</span><span class="hl-code">
            </span><span class="hl-brackets">{</span><span class="hl-code">
                </span><span class="hl-identifier">content</span><span class="hl-code">:
                </span><span class="hl-brackets">{</span><span class="hl-code">
                    </span><span class="hl-identifier">url</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">tooltip_nextstep.aspx</span><span class="hl-quotes">'</span><span class="hl-code">,
                    </span><span class="hl-identifier">data</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-identifier">id</span><span class="hl-code">: $</span><span class="hl-brackets">(</span><span class="hl-reserved">this</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">attr</span><span class="hl-brackets">(</span><span class="hl-quotes">'</span><span class="hl-string">title</span><span class="hl-quotes">'</span><span class="hl-brackets">)</span><span class="hl-code"> </span><span class="hl-brackets">}</span><span class="hl-code">,
                    </span><span class="hl-identifier">method</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">post</span><span class="hl-quotes">'</span><span class="hl-code">
                </span><span class="hl-brackets">}</span><span class="hl-code">,
                </span><span class="hl-identifier">position</span><span class="hl-code">:
                </span><span class="hl-brackets">{</span><span class="hl-code">
                    </span><span class="hl-identifier">corner</span><span class="hl-code">:
                    </span><span class="hl-brackets">{</span><span class="hl-code">
                        </span><span class="hl-identifier">target</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">rightMiddle</span><span class="hl-quotes">'</span><span class="hl-code">,
                        </span><span class="hl-identifier">tooltip</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">leftMiddle</span><span class="hl-quotes">'</span><span class="hl-code">
                    </span><span class="hl-brackets">}</span><span class="hl-code">
                </span><span class="hl-brackets">}</span><span class="hl-code">,
                </span><span class="hl-identifier">style</span><span class="hl-code">:
                </span><span class="hl-brackets">{</span><span class="hl-code">
                    </span><span class="hl-identifier">tip</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">leftMiddle</span><span class="hl-quotes">'</span><span class="hl-code">,
                    </span><span class="hl-identifier">name</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">win</span><span class="hl-quotes">'</span><span class="hl-code">
                </span><span class="hl-brackets">}</span><span class="hl-code">
            </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">
        </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">
    </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">;
</span><span class="hl-comment">//</span><span class="hl-comment">&#93;&#93;&gt;   </span><span class="hl-comment"></span><span class="hl-code">
&lt;/</span><span class="hl-identifier">script</span><span class="hl-code">&gt;</span></pre></td></tr></table></div><br />
[/code&#93;]]></description>
			<content:encoded><![CDATA[This may be beyond the scope of qTip support but I figured it can't hurt to ask.  <br />
<br />
I'm using <a href="http://www.typekit.com" target="_blank">TypeKit</a> in conjunction with qTip.  As expected, I'm getting the dreaded <a href="http://www.google.com/#hl=en&amp;q=flash+of+unstyled+text&amp;aq=f&amp;aqi=g1&amp;aql=&amp;oq=&amp;gs_rfai=&amp;pbx=1&amp;fp=6558b14e2d64664c" target="_blank">Flash of Unstyled Text (FOUT)</a> when Firefox initially loads the page, before TypeKit has a chance to substitute its fonts.  <br />
<br />
If it were on the initial page load, that's something that I could handle and there are numerous solutions available.  The problem I'm facing is when I mouseover an element which pops up a qTip, I'm getting the FOUT with every popup.<br />
<br />
Just in case it helps, here's the code I'm using for both:<br />
<br />
<div class="hl-main"><table class="hl-table" width="100%"><tr><td class="hl-gutter" align="right" valign="top"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
</pre></td><td class="hl-main" valign="top"><pre><span class="hl-code">&lt;</span><span class="hl-identifier">script</span><span class="hl-code"> </span><span class="hl-identifier">type</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">text/javascript</span><span class="hl-quotes">&quot;</span><span class="hl-code"> </span><span class="hl-identifier">src</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt;&lt;/</span><span class="hl-identifier">script</span><span class="hl-code">&gt;
&lt;</span><span class="hl-identifier">script</span><span class="hl-code"> </span><span class="hl-identifier">type</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">text/javascript</span><span class="hl-quotes">&quot;</span><span class="hl-code"> </span><span class="hl-identifier">src</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.min.js</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt;&lt;/</span><span class="hl-identifier">script</span><span class="hl-code">&gt;
&lt;</span><span class="hl-identifier">script</span><span class="hl-code"> </span><span class="hl-identifier">type</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">text/javascript</span><span class="hl-quotes">&quot;</span><span class="hl-code"> </span><span class="hl-identifier">src</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">http://ajax.microsoft.com/ajax/jquery.validate/1.7/jquery.validate.min.js</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt;&lt;/</span><span class="hl-identifier">script</span><span class="hl-code">&gt;
&lt;</span><span class="hl-identifier">script</span><span class="hl-code"> </span><span class="hl-identifier">type</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">text/javascript</span><span class="hl-quotes">&quot;</span><span class="hl-code"> </span><span class="hl-identifier">src</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">http://ajax.googleapis.com/ajax/libs/webfont/1.0.6/webfont.js</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt;&lt;/</span><span class="hl-identifier">script</span><span class="hl-code">&gt;
&lt;</span><span class="hl-identifier">script</span><span class="hl-code"> </span><span class="hl-identifier">type</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">text/javascript</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt;
</span><span class="hl-comment">//</span><span class="hl-comment">&lt;![CDATA[</span><span class="hl-comment"></span><span class="hl-code">
     </span><span class="hl-identifier">WebFont</span><span class="hl-code">.</span><span class="hl-identifier">load</span><span class="hl-brackets">(</span><span class="hl-brackets">{</span><span class="hl-code">
          </span><span class="hl-identifier">typekit</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-identifier">id</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">[my TypeKit ID]</span><span class="hl-quotes">'</span><span class="hl-code"> </span><span class="hl-brackets">}</span><span class="hl-code">
     </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">;
</span><span class="hl-comment">//</span><span class="hl-comment">]]&gt;   </span><span class="hl-comment"></span><span class="hl-code">
&lt;/</span><span class="hl-identifier">script</span><span class="hl-code">&gt;
&lt;</span><span class="hl-identifier">script</span><span class="hl-code"> </span><span class="hl-identifier">type</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">text/javascript</span><span class="hl-quotes">&quot;</span><span class="hl-code"> </span><span class="hl-identifier">src</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">/js/jquery.qtip-1.0.0-rc3.min.js</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt;&lt;/</span><span class="hl-identifier">script</span><span class="hl-code">&gt;
&lt;</span><span class="hl-identifier">script</span><span class="hl-code"> </span><span class="hl-identifier">type</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">text/javascript</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt;
</span><span class="hl-comment">//</span><span class="hl-comment">&lt;![CDATA[</span><span class="hl-comment"></span><span class="hl-code">
    $</span><span class="hl-brackets">(</span><span class="hl-builtin">document</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">ready</span><span class="hl-brackets">(</span><span class="hl-reserved">function</span><span class="hl-code"> </span><span class="hl-brackets">(</span><span class="hl-brackets">)</span><span class="hl-code"> 
    </span><span class="hl-brackets">{</span><span class="hl-code">
        $.</span><span class="hl-identifier">fn</span><span class="hl-code">.</span><span class="hl-identifier">qtip</span><span class="hl-code">.</span><span class="hl-identifier">styles</span><span class="hl-code">.</span><span class="hl-identifier">win</span><span class="hl-code"> = </span><span class="hl-brackets">{</span><span class="hl-code">
            </span><span class="hl-identifier">width</span><span class="hl-code">: </span><span class="hl-number">400</span><span class="hl-code">,
            </span><span class="hl-identifier">padding</span><span class="hl-code">: </span><span class="hl-number">10</span><span class="hl-code">,
            </span><span class="hl-identifier">border</span><span class="hl-code">:
            </span><span class="hl-brackets">{</span><span class="hl-code">
                </span><span class="hl-identifier">width</span><span class="hl-code">: </span><span class="hl-number">5</span><span class="hl-code">,
                </span><span class="hl-identifier">radius</span><span class="hl-code">: </span><span class="hl-number">0</span><span class="hl-code">,
                </span><span class="hl-identifier">color</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">#c5e9ff</span><span class="hl-quotes">'</span><span class="hl-code">
            </span><span class="hl-brackets">}</span><span class="hl-code">,
            </span><span class="hl-identifier">tip</span><span class="hl-code">:
            </span><span class="hl-brackets">{</span><span class="hl-code">
                </span><span class="hl-identifier">size</span><span class="hl-code">:
                </span><span class="hl-brackets">{</span><span class="hl-code">
                    </span><span class="hl-identifier">x</span><span class="hl-code">: </span><span class="hl-number">10</span><span class="hl-code">,
                    </span><span class="hl-identifier">y</span><span class="hl-code">: </span><span class="hl-number">10</span><span class="hl-code">
                </span><span class="hl-brackets">}</span><span class="hl-code">
            </span><span class="hl-brackets">}</span><span class="hl-code">,
            </span><span class="hl-identifier">name</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">light</span><span class="hl-quotes">'</span><span class="hl-code">
        </span><span class="hl-brackets">}</span><span class="hl-code">
        $</span><span class="hl-brackets">(</span><span class="hl-quotes">&quot;</span><span class="hl-string">.tip-right-event</span><span class="hl-quotes">&quot;</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">each</span><span class="hl-brackets">(</span><span class="hl-reserved">function</span><span class="hl-code"> </span><span class="hl-brackets">(</span><span class="hl-brackets">)</span><span class="hl-code"> 
        </span><span class="hl-brackets">{</span><span class="hl-code">
            $</span><span class="hl-brackets">(</span><span class="hl-reserved">this</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">qtip</span><span class="hl-brackets">(</span><span class="hl-code">
            </span><span class="hl-brackets">{</span><span class="hl-code">
                </span><span class="hl-identifier">content</span><span class="hl-code">:
                </span><span class="hl-brackets">{</span><span class="hl-code">
                    </span><span class="hl-identifier">url</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">tooltip_event.aspx</span><span class="hl-quotes">'</span><span class="hl-code">,
                    </span><span class="hl-identifier">data</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-identifier">id</span><span class="hl-code">: $</span><span class="hl-brackets">(</span><span class="hl-reserved">this</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">attr</span><span class="hl-brackets">(</span><span class="hl-quotes">'</span><span class="hl-string">title</span><span class="hl-quotes">'</span><span class="hl-brackets">)</span><span class="hl-code"> </span><span class="hl-brackets">}</span><span class="hl-code">,
                    </span><span class="hl-identifier">method</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">post</span><span class="hl-quotes">'</span><span class="hl-code">
                </span><span class="hl-brackets">}</span><span class="hl-code">,
                </span><span class="hl-identifier">position</span><span class="hl-code">:
                </span><span class="hl-brackets">{</span><span class="hl-code">
                    </span><span class="hl-identifier">corner</span><span class="hl-code">:
                    </span><span class="hl-brackets">{</span><span class="hl-code">
                        </span><span class="hl-identifier">target</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">rightMiddle</span><span class="hl-quotes">'</span><span class="hl-code">,
                        </span><span class="hl-identifier">tooltip</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">leftMiddle</span><span class="hl-quotes">'</span><span class="hl-code">
                    </span><span class="hl-brackets">}</span><span class="hl-code">
                </span><span class="hl-brackets">}</span><span class="hl-code">,
                </span><span class="hl-identifier">style</span><span class="hl-code">:
                </span><span class="hl-brackets">{</span><span class="hl-code">
                    </span><span class="hl-identifier">tip</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">leftMiddle</span><span class="hl-quotes">'</span><span class="hl-code">,
                    </span><span class="hl-identifier">name</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">win</span><span class="hl-quotes">'</span><span class="hl-code">
                </span><span class="hl-brackets">}</span><span class="hl-code">
            </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">
        </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">
        $</span><span class="hl-brackets">(</span><span class="hl-quotes">&quot;</span><span class="hl-string">.tip-left-event</span><span class="hl-quotes">&quot;</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">each</span><span class="hl-brackets">(</span><span class="hl-reserved">function</span><span class="hl-code"> </span><span class="hl-brackets">(</span><span class="hl-brackets">)</span><span class="hl-code"> 
        </span><span class="hl-brackets">{</span><span class="hl-code">
            $</span><span class="hl-brackets">(</span><span class="hl-reserved">this</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">qtip</span><span class="hl-brackets">(</span><span class="hl-code">
            </span><span class="hl-brackets">{</span><span class="hl-code">
                </span><span class="hl-identifier">content</span><span class="hl-code">:
                </span><span class="hl-brackets">{</span><span class="hl-code">
                    </span><span class="hl-identifier">url</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">tooltip_event.aspx</span><span class="hl-quotes">'</span><span class="hl-code">,
                    </span><span class="hl-identifier">data</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-identifier">id</span><span class="hl-code">: $</span><span class="hl-brackets">(</span><span class="hl-reserved">this</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">attr</span><span class="hl-brackets">(</span><span class="hl-quotes">'</span><span class="hl-string">title</span><span class="hl-quotes">'</span><span class="hl-brackets">)</span><span class="hl-code"> </span><span class="hl-brackets">}</span><span class="hl-code">,
                    </span><span class="hl-identifier">method</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">post</span><span class="hl-quotes">'</span><span class="hl-code">
                </span><span class="hl-brackets">}</span><span class="hl-code">,
                </span><span class="hl-identifier">position</span><span class="hl-code">:
                </span><span class="hl-brackets">{</span><span class="hl-code">
                    </span><span class="hl-identifier">corner</span><span class="hl-code">:
                    </span><span class="hl-brackets">{</span><span class="hl-code">
                        </span><span class="hl-identifier">target</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">leftMiddle</span><span class="hl-quotes">'</span><span class="hl-code">,
                        </span><span class="hl-identifier">tooltip</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">rightMiddle</span><span class="hl-quotes">'</span><span class="hl-code">
                    </span><span class="hl-brackets">}</span><span class="hl-code">
                </span><span class="hl-brackets">}</span><span class="hl-code">,
                </span><span class="hl-identifier">style</span><span class="hl-code">:
                </span><span class="hl-brackets">{</span><span class="hl-code">
                    </span><span class="hl-identifier">tip</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">rightMiddle</span><span class="hl-quotes">'</span><span class="hl-code">,
                    </span><span class="hl-identifier">name</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">win</span><span class="hl-quotes">'</span><span class="hl-code">
                </span><span class="hl-brackets">}</span><span class="hl-code">
            </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">
        </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">
        $</span><span class="hl-brackets">(</span><span class="hl-quotes">&quot;</span><span class="hl-string">.tip-right-nextstep</span><span class="hl-quotes">&quot;</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">each</span><span class="hl-brackets">(</span><span class="hl-reserved">function</span><span class="hl-code"> </span><span class="hl-brackets">(</span><span class="hl-brackets">)</span><span class="hl-code"> 
        </span><span class="hl-brackets">{</span><span class="hl-code">
            $</span><span class="hl-brackets">(</span><span class="hl-reserved">this</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">qtip</span><span class="hl-brackets">(</span><span class="hl-code">
            </span><span class="hl-brackets">{</span><span class="hl-code">
                </span><span class="hl-identifier">content</span><span class="hl-code">:
                </span><span class="hl-brackets">{</span><span class="hl-code">
                    </span><span class="hl-identifier">url</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">tooltip_nextstep.aspx</span><span class="hl-quotes">'</span><span class="hl-code">,
                    </span><span class="hl-identifier">data</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-identifier">id</span><span class="hl-code">: $</span><span class="hl-brackets">(</span><span class="hl-reserved">this</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">attr</span><span class="hl-brackets">(</span><span class="hl-quotes">'</span><span class="hl-string">title</span><span class="hl-quotes">'</span><span class="hl-brackets">)</span><span class="hl-code"> </span><span class="hl-brackets">}</span><span class="hl-code">,
                    </span><span class="hl-identifier">method</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">post</span><span class="hl-quotes">'</span><span class="hl-code">
                </span><span class="hl-brackets">}</span><span class="hl-code">,
                </span><span class="hl-identifier">position</span><span class="hl-code">:
                </span><span class="hl-brackets">{</span><span class="hl-code">
                    </span><span class="hl-identifier">corner</span><span class="hl-code">:
                    </span><span class="hl-brackets">{</span><span class="hl-code">
                        </span><span class="hl-identifier">target</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">rightMiddle</span><span class="hl-quotes">'</span><span class="hl-code">,
                        </span><span class="hl-identifier">tooltip</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">leftMiddle</span><span class="hl-quotes">'</span><span class="hl-code">
                    </span><span class="hl-brackets">}</span><span class="hl-code">
                </span><span class="hl-brackets">}</span><span class="hl-code">,
                </span><span class="hl-identifier">style</span><span class="hl-code">:
                </span><span class="hl-brackets">{</span><span class="hl-code">
                    </span><span class="hl-identifier">tip</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">leftMiddle</span><span class="hl-quotes">'</span><span class="hl-code">,
                    </span><span class="hl-identifier">name</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">win</span><span class="hl-quotes">'</span><span class="hl-code">
                </span><span class="hl-brackets">}</span><span class="hl-code">
            </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">
        </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">
    </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">;
</span><span class="hl-comment">//</span><span class="hl-comment">]]&gt;   </span><span class="hl-comment"></span><span class="hl-code">
&lt;/</span><span class="hl-identifier">script</span><span class="hl-code">&gt;</span></pre></td></tr></table></div><br />
[/code]]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[position:{target:"event"} vs reposition]]></title>
			<link>http://craigsworks.com/projects/forums/thread-position-target-event-vs-reposition</link>
			<pubDate>Wed, 28 Jul 2010 10:58:39 -0700</pubDate>
			<guid isPermaLink="false">http://craigsworks.com/projects/forums/thread-position-target-event-vs-reposition</guid>
			<description><![CDATA[I am using the position:{target:"event"} that you <a href="http://craigsworks.com/projects/forums/thread-reuse-same-qtip-in-multiple-places-on-page" target="_blank">recently added</a>. This works fine when there are actual events (show/hide). But when I try to run the <a href="http://craigsworks.com/projects/qtip_new/docs/api/methods/#api-shortcuts" target="_blank">.reposition()</a> option, it fails.<br />
<br />
The errors I get say that the event is actually a string of "event" (presumably from the position.target) instead of a real event, so in turn there is no "target" which is needed for the reposition to work.<br />
<br />
I have a <a href="http://www.aaronbarker.net/stuff/bugs/qtip/reposition.html" target="_blank">demo page</a> with this error occurring. One tip (without the target:event) works, and another (with the target:event) breaks and throws errors.<br />
<br />
Is there something that I am missing? Or is this a bug?]]></description>
			<content:encoded><![CDATA[I am using the position:{target:"event"} that you <a href="http://craigsworks.com/projects/forums/thread-reuse-same-qtip-in-multiple-places-on-page" target="_blank">recently added</a>. This works fine when there are actual events (show/hide). But when I try to run the <a href="http://craigsworks.com/projects/qtip_new/docs/api/methods/#api-shortcuts" target="_blank">.reposition()</a> option, it fails.<br />
<br />
The errors I get say that the event is actually a string of "event" (presumably from the position.target) instead of a real event, so in turn there is no "target" which is needed for the reposition to work.<br />
<br />
I have a <a href="http://www.aaronbarker.net/stuff/bugs/qtip/reposition.html" target="_blank">demo page</a> with this error occurring. One tip (without the target:event) works, and another (with the target:event) breaks and throws errors.<br />
<br />
Is there something that I am missing? Or is this a bug?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Auto Position problem]]></title>
			<link>http://craigsworks.com/projects/forums/thread-auto-position-problem</link>
			<pubDate>Wed, 28 Jul 2010 03:58:10 -0700</pubDate>
			<guid isPermaLink="false">http://craigsworks.com/projects/forums/thread-auto-position-problem</guid>
			<description><![CDATA[Hi,<br />
<br />
in order to reposition the tooltip when there is not enoght screen space I've aded <span style="font-style: italic;">tip: true</span> which works a treat. <br />
<br />
The problem is that this creates a stem on the tool tip. I've managed to almost hide this by setting  <span style="font-style: italic;">size: { x: 0,  y: 0 }</span> and <span style="font-style: italic;">color:</span> to something appropriate to help blend it in to the back ground, seems a bit of a hack is there a cleaner way of doing this?<br />
<br />
I'm using jquery-1.3.2.min.js and jquery.qtip-1.0.0-rc3.min.js.<br />
<br />
I've just started using this so sorry if it's too basic a question.<br />
<br />
Alex]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
in order to reposition the tooltip when there is not enoght screen space I've aded <span style="font-style: italic;">tip: true</span> which works a treat. <br />
<br />
The problem is that this creates a stem on the tool tip. I've managed to almost hide this by setting  <span style="font-style: italic;">size: { x: 0,  y: 0 }</span> and <span style="font-style: italic;">color:</span> to something appropriate to help blend it in to the back ground, seems a bit of a hack is there a cleaner way of doing this?<br />
<br />
I'm using jquery-1.3.2.min.js and jquery.qtip-1.0.0-rc3.min.js.<br />
<br />
I've just started using this so sorry if it's too basic a question.<br />
<br />
Alex]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[open jqtip from javascript call]]></title>
			<link>http://craigsworks.com/projects/forums/thread-open-jqtip-from-javascript-call</link>
			<pubDate>Tue, 27 Jul 2010 13:40:22 -0700</pubDate>
			<guid isPermaLink="false">http://craigsworks.com/projects/forums/thread-open-jqtip-from-javascript-call</guid>
			<description><![CDATA[Basically I want to use qtip like an alert box<br />
<br />
I want to do this:<br />
<br />
if(json.type == 'error')<br />
	{<br />
		//open qtip and show json.message<br />
	}<br />
<br />
I haven't got a clue how?<br />
<br />
Thanks.]]></description>
			<content:encoded><![CDATA[Basically I want to use qtip like an alert box<br />
<br />
I want to do this:<br />
<br />
if(json.type == 'error')<br />
	{<br />
		//open qtip and show json.message<br />
	}<br />
<br />
I haven't got a clue how?<br />
<br />
Thanks.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Vertical position wrong]]></title>
			<link>http://craigsworks.com/projects/forums/thread-vertical-position-wrong</link>
			<pubDate>Tue, 27 Jul 2010 07:29:12 -0700</pubDate>
			<guid isPermaLink="false">http://craigsworks.com/projects/forums/thread-vertical-position-wrong</guid>
			<description><![CDATA[Hello!<br />
<br />
I think I have the problem described here:<br />
<a href="http://craigsworks.com/projects/qtip_new/docs/plugins/preload/" target="_blank">http://craigsworks.com/projects/qtip_new...s/preload/</a><br />
<br />
I'm using qtip2. It seems that my qtips are placed at the correct height, and when images above it loads, the vertical position is messed up (qtip is too far up).<br />
<br />
I can't find a way to download jquery.qtip-2.0.preload.min.js<br />
<br />
Rather than preloading the images (which might lead to other problems on my site), is there some way to just delay the showing of the qtips for a awhile? Show on document.ready? Or wait 2 seconds?<br />
<br />
Thanks, <br />
Dennis]]></description>
			<content:encoded><![CDATA[Hello!<br />
<br />
I think I have the problem described here:<br />
<a href="http://craigsworks.com/projects/qtip_new/docs/plugins/preload/" target="_blank">http://craigsworks.com/projects/qtip_new...s/preload/</a><br />
<br />
I'm using qtip2. It seems that my qtips are placed at the correct height, and when images above it loads, the vertical position is messed up (qtip is too far up).<br />
<br />
I can't find a way to download jquery.qtip-2.0.preload.min.js<br />
<br />
Rather than preloading the images (which might lead to other problems on my site), is there some way to just delay the showing of the qtips for a awhile? Show on document.ready? Or wait 2 seconds?<br />
<br />
Thanks, <br />
Dennis]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Update content dynamically with QTip and jQuery]]></title>
			<link>http://craigsworks.com/projects/forums/thread-update-content-dynamically-with-qtip-and-jquery</link>
			<pubDate>Tue, 27 Jul 2010 05:44:06 -0700</pubDate>
			<guid isPermaLink="false">http://craigsworks.com/projects/forums/thread-update-content-dynamically-with-qtip-and-jquery</guid>
			<description><![CDATA[Hi,<br />
<br />
I have a initial JSP page which sports some boxes(seperate div elements), on mouseover of this boxes I am showing a tooltip. The content of this tooltip is another JSP page(same for all boxes but different data).<br />
<br />
How can I load fresh content every time mouseover happens?<br />
<br />
Also in the below code :<br />
&#36;("jqueryselector").qtip({<br />
   content: {<br />
      url: 'localcontent.html',<br />
      data: { id: 5 },<br />
      method: 'get'<br />
   }<br />
});<br />
<br />
How can I get data in the url page, if it is a JSP with few functions?<br />
<br />
Thanks,<br />
Dhanya]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
I have a initial JSP page which sports some boxes(seperate div elements), on mouseover of this boxes I am showing a tooltip. The content of this tooltip is another JSP page(same for all boxes but different data).<br />
<br />
How can I load fresh content every time mouseover happens?<br />
<br />
Also in the below code :<br />
&#36;("jqueryselector").qtip({<br />
   content: {<br />
      url: 'localcontent.html',<br />
      data: { id: 5 },<br />
      method: 'get'<br />
   }<br />
});<br />
<br />
How can I get data in the url page, if it is a JSP with few functions?<br />
<br />
Thanks,<br />
Dhanya]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Solved&#93; multiple images as a tooltip]]></title>
			<link>http://craigsworks.com/projects/forums/thread-solved-multiple-images-as-a-tooltip</link>
			<pubDate>Tue, 27 Jul 2010 01:07:35 -0700</pubDate>
			<guid isPermaLink="false">http://craigsworks.com/projects/forums/thread-solved-multiple-images-as-a-tooltip</guid>
			<description><![CDATA[Hi there, from the demo i can load the tooltip image.<br />
but what if i have more than one image?<br />
how should i code for the js?<br />
pls help as i hav no idea for the js things.<br />
Thanks a lot <img src="http://craigsworks.com/projects/forums/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
here is my code:<br />
<br />
<div class="hl-main"><table class="hl-table" width="100%"><tr><td class="hl-gutter" align="right" valign="top"><pre>1
2
3
4
5
</pre></td><td class="hl-main" valign="top"><pre><span class="hl-brackets">&lt;</span><span class="hl-reserved">ul</span><span class="hl-code"> </span><span class="hl-var">id</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">c-title</span><span class="hl-quotes">&quot;</span><span class="hl-brackets">&gt;</span><span class="hl-code">
   </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">li</span><span class="hl-code"> </span><span class="hl-var">class</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">c-01</span><span class="hl-quotes">&quot;</span><span class="hl-brackets">&gt;</span><span class="hl-code">Test1</span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">li</span><span class="hl-brackets">&gt;</span><span class="hl-code">
   </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">li</span><span class="hl-code"> </span><span class="hl-var">class</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">c-02</span><span class="hl-quotes">&quot;</span><span class="hl-brackets">&gt;</span><span class="hl-code">Test2</span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">li</span><span class="hl-brackets">&gt;</span><span class="hl-code">
   </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">li</span><span class="hl-code"> </span><span class="hl-var">class</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">c-03</span><span class="hl-quotes">&quot;</span><span class="hl-brackets">&gt;</span><span class="hl-code">Test3</span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">li</span><span class="hl-brackets">&gt;</span><span class="hl-code">
</span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">ul</span><span class="hl-brackets">&gt;</span></pre></td></tr></table></div><br />
<br />
<div class="hl-main"><table class="hl-table" width="100%"><tr><td class="hl-gutter" align="right" valign="top"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
</pre></td><td class="hl-main" valign="top"><pre><span class="hl-code">&lt;</span><span class="hl-identifier">script</span><span class="hl-code"> </span><span class="hl-identifier">type</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">text/javascript</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt;
$</span><span class="hl-brackets">(</span><span class="hl-builtin">document</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">ready</span><span class="hl-brackets">(</span><span class="hl-reserved">function</span><span class="hl-brackets">(</span><span class="hl-brackets">)</span><span class="hl-code"> 
</span><span class="hl-brackets">{</span><span class="hl-code">
   $</span><span class="hl-brackets">(</span><span class="hl-quotes">'</span><span class="hl-string">#c-title li.c-01</span><span class="hl-quotes">'</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">qtip</span><span class="hl-brackets">(</span><span class="hl-brackets">{</span><span class="hl-code">
      </span><span class="hl-identifier">content</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">&lt;a href=&quot;http://google.com&quot;&gt;&lt;img src=&quot;images/campaigns/c-01.gif&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;</span><span class="hl-quotes">'</span><span class="hl-code">,
     </span><span class="hl-identifier">position</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">
         </span><span class="hl-identifier">corner</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-identifier">target</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">rightMiddle</span><span class="hl-quotes">'</span><span class="hl-code">, </span><span class="hl-identifier">tooltip</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">leftMiddle</span><span class="hl-quotes">'</span><span class="hl-brackets">}</span><span class="hl-code">
     </span><span class="hl-brackets">}</span><span class="hl-code">,
     </span><span class="hl-identifier">show</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-identifier">when</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-identifier">event</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">click</span><span class="hl-quotes">'</span><span class="hl-code"> </span><span class="hl-brackets">}</span><span class="hl-code"> </span><span class="hl-brackets">}</span><span class="hl-code">,
     </span><span class="hl-identifier">hide</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-identifier">when</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-identifier">event</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">unfocus</span><span class="hl-quotes">'</span><span class="hl-code"> </span><span class="hl-brackets">}</span><span class="hl-code"> </span><span class="hl-brackets">}</span><span class="hl-code">,
      </span><span class="hl-identifier">style</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">
         </span><span class="hl-identifier">padding</span><span class="hl-code">: </span><span class="hl-number">0</span><span class="hl-code">,
      </span><span class="hl-identifier">border</span><span class="hl-code">: </span><span class="hl-number">0</span><span class="hl-code">,
         </span><span class="hl-identifier">background</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">transparent</span><span class="hl-quotes">'</span><span class="hl-code">,
         </span><span class="hl-identifier">textAlign</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">left</span><span class="hl-quotes">'</span><span class="hl-code">
     </span><span class="hl-brackets">}</span><span class="hl-code">
   </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">;
</span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">;
&lt;/</span><span class="hl-identifier">script</span><span class="hl-code">&gt;</span></pre></td></tr></table></div>]]></description>
			<content:encoded><![CDATA[Hi there, from the demo i can load the tooltip image.<br />
but what if i have more than one image?<br />
how should i code for the js?<br />
pls help as i hav no idea for the js things.<br />
Thanks a lot <img src="http://craigsworks.com/projects/forums/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
here is my code:<br />
<br />
<div class="hl-main"><table class="hl-table" width="100%"><tr><td class="hl-gutter" align="right" valign="top"><pre>1
2
3
4
5
</pre></td><td class="hl-main" valign="top"><pre><span class="hl-brackets">&lt;</span><span class="hl-reserved">ul</span><span class="hl-code"> </span><span class="hl-var">id</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">c-title</span><span class="hl-quotes">&quot;</span><span class="hl-brackets">&gt;</span><span class="hl-code">
   </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">li</span><span class="hl-code"> </span><span class="hl-var">class</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">c-01</span><span class="hl-quotes">&quot;</span><span class="hl-brackets">&gt;</span><span class="hl-code">Test1</span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">li</span><span class="hl-brackets">&gt;</span><span class="hl-code">
   </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">li</span><span class="hl-code"> </span><span class="hl-var">class</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">c-02</span><span class="hl-quotes">&quot;</span><span class="hl-brackets">&gt;</span><span class="hl-code">Test2</span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">li</span><span class="hl-brackets">&gt;</span><span class="hl-code">
   </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">li</span><span class="hl-code"> </span><span class="hl-var">class</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">c-03</span><span class="hl-quotes">&quot;</span><span class="hl-brackets">&gt;</span><span class="hl-code">Test3</span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">li</span><span class="hl-brackets">&gt;</span><span class="hl-code">
</span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">ul</span><span class="hl-brackets">&gt;</span></pre></td></tr></table></div><br />
<br />
<div class="hl-main"><table class="hl-table" width="100%"><tr><td class="hl-gutter" align="right" valign="top"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
</pre></td><td class="hl-main" valign="top"><pre><span class="hl-code">&lt;</span><span class="hl-identifier">script</span><span class="hl-code"> </span><span class="hl-identifier">type</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">text/javascript</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt;
$</span><span class="hl-brackets">(</span><span class="hl-builtin">document</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">ready</span><span class="hl-brackets">(</span><span class="hl-reserved">function</span><span class="hl-brackets">(</span><span class="hl-brackets">)</span><span class="hl-code"> 
</span><span class="hl-brackets">{</span><span class="hl-code">
   $</span><span class="hl-brackets">(</span><span class="hl-quotes">'</span><span class="hl-string">#c-title li.c-01</span><span class="hl-quotes">'</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">qtip</span><span class="hl-brackets">(</span><span class="hl-brackets">{</span><span class="hl-code">
      </span><span class="hl-identifier">content</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">&lt;a href=&quot;http://google.com&quot;&gt;&lt;img src=&quot;images/campaigns/c-01.gif&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;</span><span class="hl-quotes">'</span><span class="hl-code">,
     </span><span class="hl-identifier">position</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">
         </span><span class="hl-identifier">corner</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-identifier">target</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">rightMiddle</span><span class="hl-quotes">'</span><span class="hl-code">, </span><span class="hl-identifier">tooltip</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">leftMiddle</span><span class="hl-quotes">'</span><span class="hl-brackets">}</span><span class="hl-code">
     </span><span class="hl-brackets">}</span><span class="hl-code">,
     </span><span class="hl-identifier">show</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-identifier">when</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-identifier">event</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">click</span><span class="hl-quotes">'</span><span class="hl-code"> </span><span class="hl-brackets">}</span><span class="hl-code"> </span><span class="hl-brackets">}</span><span class="hl-code">,
     </span><span class="hl-identifier">hide</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-identifier">when</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-identifier">event</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">unfocus</span><span class="hl-quotes">'</span><span class="hl-code"> </span><span class="hl-brackets">}</span><span class="hl-code"> </span><span class="hl-brackets">}</span><span class="hl-code">,
      </span><span class="hl-identifier">style</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">
         </span><span class="hl-identifier">padding</span><span class="hl-code">: </span><span class="hl-number">0</span><span class="hl-code">,
      </span><span class="hl-identifier">border</span><span class="hl-code">: </span><span class="hl-number">0</span><span class="hl-code">,
         </span><span class="hl-identifier">background</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">transparent</span><span class="hl-quotes">'</span><span class="hl-code">,
         </span><span class="hl-identifier">textAlign</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">left</span><span class="hl-quotes">'</span><span class="hl-code">
     </span><span class="hl-brackets">}</span><span class="hl-code">
   </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">;
</span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">;
&lt;/</span><span class="hl-identifier">script</span><span class="hl-code">&gt;</span></pre></td></tr></table></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[qTip2.0 + tip strange behavior]]></title>
			<link>http://craigsworks.com/projects/forums/thread-qtip2-0-tip-strange-behavior</link>
			<pubDate>Sun, 25 Jul 2010 07:25:21 -0700</pubDate>
			<guid isPermaLink="false">http://craigsworks.com/projects/forums/thread-qtip2-0-tip-strange-behavior</guid>
			<description><![CDATA[I'm noticing some strange behavior working with the tip plugin. I've attached a picture of what using the following looks like in Firefox 3.6.<br />
<br />
<div class="hl-main"><table class="hl-table" width="100%"><tr><td class="hl-gutter" align="right" valign="top"><pre>1
2
3
4
5
</pre></td><td class="hl-main" valign="top"><pre><span class="hl-identifier">style</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-identifier">classes</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">ui-tooltip-red</span><span class="hl-quotes">'</span><span class="hl-code">,</span><span class="hl-identifier">tip</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">&lt;</span><span class="hl-identifier">span</span><span class="hl-code"> </span><span class="hl-identifier">style</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">font-weight: bold;</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt;</span><span class="hl-identifier">corner</span><span class="hl-code">: </span><span class="hl-reserved">true</span><span class="hl-code">&lt;/</span><span class="hl-identifier">span</span><span class="hl-code">&gt;,</span><span class="hl-identifier">border</span><span class="hl-code">: </span><span class="hl-number">3</span><span class="hl-code">,</span><span class="hl-identifier">width</span><span class="hl-code">: </span><span class="hl-number">16</span><span class="hl-code">,</span><span class="hl-identifier">height</span><span class="hl-code">: </span><span class="hl-number">24</span><span class="hl-brackets">}</span><span class="hl-brackets">}</span><span class="hl-code">,
 
</span><span class="hl-identifier">I</span><span class="hl-code"> </span><span class="hl-identifier">want</span><span class="hl-code"> </span><span class="hl-identifier">to</span><span class="hl-code"> </span><span class="hl-identifier">change</span><span class="hl-code"> </span><span class="hl-identifier">the</span><span class="hl-code"> </span><span class="hl-identifier">corner</span><span class="hl-code"> </span><span class="hl-identifier">to</span><span class="hl-code"> </span><span class="hl-identifier">be</span><span class="hl-code"> </span><span class="hl-reserved">in</span><span class="hl-code"> </span><span class="hl-identifier">the</span><span class="hl-code"> </span><span class="hl-identifier">left</span><span class="hl-code"> </span><span class="hl-identifier">bottom</span><span class="hl-code"> </span><span class="hl-identifier">of</span><span class="hl-code"> </span><span class="hl-identifier">the</span><span class="hl-code"> </span><span class="hl-identifier">tip</span><span class="hl-code">. </span><span class="hl-identifier">I</span><span class="hl-code"> </span><span class="hl-identifier">tried</span><span class="hl-code"> </span><span class="hl-reserved">this</span><span class="hl-code"> </span><span class="hl-identifier">and</span><span class="hl-code"> </span><span class="hl-identifier">the</span><span class="hl-code"> </span><span class="hl-identifier">qTip</span><span class="hl-code"> </span><span class="hl-identifier">has</span><span class="hl-code"> </span><span class="hl-identifier">now</span><span class="hl-code"> </span><span class="hl-identifier">moved</span><span class="hl-code"> </span><span class="hl-identifier">close</span><span class="hl-code"> </span><span class="hl-identifier">to</span><span class="hl-code"> </span><span class="hl-identifier">the</span><span class="hl-code"> </span><span class="hl-identifier">top</span><span class="hl-code"> </span><span class="hl-identifier">corner</span><span class="hl-code"> </span><span class="hl-identifier">of</span><span class="hl-code"> </span><span class="hl-identifier">the</span><span class="hl-code"> </span><span class="hl-identifier">page</span><span class="hl-code">. </span><span class="hl-identifier">Any</span><span class="hl-code"> </span><span class="hl-identifier">ideas</span><span class="hl-code"> </span><span class="hl-identifier">what</span><span class="hl-code"> </span><span class="hl-identifier">could</span><span class="hl-code"> </span><span class="hl-identifier">be</span><span class="hl-code"> </span><span class="hl-identifier">going</span><span class="hl-code"> </span><span class="hl-identifier">on</span><span class="hl-code">?
 
</span><span class="hl-brackets">[</span><span class="hl-identifier">code</span><span class="hl-code">=</span><span class="hl-identifier">javascript</span><span class="hl-brackets">&#93;</span><span class="hl-identifier">style</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-identifier">classes</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">ui-tooltip-red</span><span class="hl-quotes">'</span><span class="hl-code">,</span><span class="hl-identifier">tip</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">&lt;</span><span class="hl-identifier">span</span><span class="hl-code"> </span><span class="hl-identifier">style</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">font-weight: bold;</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt;</span><span class="hl-identifier">corner</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">bottom left</span><span class="hl-quotes">'</span><span class="hl-code">&lt;/</span><span class="hl-identifier">span</span><span class="hl-code">&gt;,</span><span class="hl-identifier">border</span><span class="hl-code">: </span><span class="hl-number">3</span><span class="hl-code">,</span><span class="hl-identifier">width</span><span class="hl-code">: </span><span class="hl-number">16</span><span class="hl-code">,</span><span class="hl-identifier">height</span><span class="hl-code">: </span><span class="hl-number">24</span><span class="hl-brackets">}</span><span class="hl-brackets">}</span></pre></td></tr></table></div><br />
<br />
I am using qTip2.0 with the qtips plugin found on this page: <a href="http://craigsworks.com/projects/qtip_new/download/" target="_blank">http://craigsworks.com/projects/qtip_new/download/</a><br />
I checked qTip Core, Speech Bubble Tips + IE6 form support and included jquery.qtip-custom.min.js in the footer of my page.<br />
<br />
This is the whole qtip declaration if that helps.<br />
<br />
<div class="hl-main"><table class="hl-table" width="100%"><tr><td class="hl-gutter" align="right" valign="top"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
</pre></td><td class="hl-main" valign="top"><pre><span class="hl-code">$</span><span class="hl-brackets">(</span><span class="hl-identifier">field</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">qtip</span><span class="hl-brackets">(</span><span class="hl-brackets">{</span><span class="hl-code">
                        </span><span class="hl-identifier">content</span><span class="hl-code">: </span><span class="hl-identifier">app</span><span class="hl-brackets">[</span><span class="hl-quotes">'</span><span class="hl-string">validateMessages</span><span class="hl-quotes">'</span><span class="hl-brackets">&#93;</span><span class="hl-brackets">[</span><span class="hl-identifier">m</span><span class="hl-brackets">&#93;</span><span class="hl-code">,
                        </span><span class="hl-identifier">style</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-identifier">classes</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">ui-tooltip-red</span><span class="hl-quotes">'</span><span class="hl-code">,</span><span class="hl-identifier">tip</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">
                              </span><span class="hl-identifier">corner</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">bottom left</span><span class="hl-quotes">'</span><span class="hl-code">,
                              </span><span class="hl-identifier">border</span><span class="hl-code">: </span><span class="hl-number">3</span><span class="hl-code">,
                              </span><span class="hl-identifier">width</span><span class="hl-code">: </span><span class="hl-number">16</span><span class="hl-code">,
                              </span><span class="hl-identifier">height</span><span class="hl-code">: </span><span class="hl-number">24</span><span class="hl-code">
                           </span><span class="hl-brackets">}</span><span class="hl-code">
                      </span><span class="hl-brackets">}</span><span class="hl-code">,
                        </span><span class="hl-identifier">position</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-identifier">my</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">left bottom</span><span class="hl-quotes">'</span><span class="hl-code">, </span><span class="hl-identifier">at</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">top right</span><span class="hl-quotes">'</span><span class="hl-brackets">}</span><span class="hl-code">,
                        </span><span class="hl-identifier">show</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-identifier">ready</span><span class="hl-code">: </span><span class="hl-reserved">true</span><span class="hl-code">,</span><span class="hl-identifier">event</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">resize</span><span class="hl-quotes">'</span><span class="hl-brackets">}</span><span class="hl-code">,
                        </span><span class="hl-identifier">hide</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">blur</span><span class="hl-quotes">'</span><span class="hl-code">
                  </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">;</span></pre></td></tr></table></div>]]></description>
			<content:encoded><![CDATA[I'm noticing some strange behavior working with the tip plugin. I've attached a picture of what using the following looks like in Firefox 3.6.<br />
<br />
<div class="hl-main"><table class="hl-table" width="100%"><tr><td class="hl-gutter" align="right" valign="top"><pre>1
2
3
4
5
</pre></td><td class="hl-main" valign="top"><pre><span class="hl-identifier">style</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-identifier">classes</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">ui-tooltip-red</span><span class="hl-quotes">'</span><span class="hl-code">,</span><span class="hl-identifier">tip</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">&lt;</span><span class="hl-identifier">span</span><span class="hl-code"> </span><span class="hl-identifier">style</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">font-weight: bold;</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt;</span><span class="hl-identifier">corner</span><span class="hl-code">: </span><span class="hl-reserved">true</span><span class="hl-code">&lt;/</span><span class="hl-identifier">span</span><span class="hl-code">&gt;,</span><span class="hl-identifier">border</span><span class="hl-code">: </span><span class="hl-number">3</span><span class="hl-code">,</span><span class="hl-identifier">width</span><span class="hl-code">: </span><span class="hl-number">16</span><span class="hl-code">,</span><span class="hl-identifier">height</span><span class="hl-code">: </span><span class="hl-number">24</span><span class="hl-brackets">}</span><span class="hl-brackets">}</span><span class="hl-code">,
 
</span><span class="hl-identifier">I</span><span class="hl-code"> </span><span class="hl-identifier">want</span><span class="hl-code"> </span><span class="hl-identifier">to</span><span class="hl-code"> </span><span class="hl-identifier">change</span><span class="hl-code"> </span><span class="hl-identifier">the</span><span class="hl-code"> </span><span class="hl-identifier">corner</span><span class="hl-code"> </span><span class="hl-identifier">to</span><span class="hl-code"> </span><span class="hl-identifier">be</span><span class="hl-code"> </span><span class="hl-reserved">in</span><span class="hl-code"> </span><span class="hl-identifier">the</span><span class="hl-code"> </span><span class="hl-identifier">left</span><span class="hl-code"> </span><span class="hl-identifier">bottom</span><span class="hl-code"> </span><span class="hl-identifier">of</span><span class="hl-code"> </span><span class="hl-identifier">the</span><span class="hl-code"> </span><span class="hl-identifier">tip</span><span class="hl-code">. </span><span class="hl-identifier">I</span><span class="hl-code"> </span><span class="hl-identifier">tried</span><span class="hl-code"> </span><span class="hl-reserved">this</span><span class="hl-code"> </span><span class="hl-identifier">and</span><span class="hl-code"> </span><span class="hl-identifier">the</span><span class="hl-code"> </span><span class="hl-identifier">qTip</span><span class="hl-code"> </span><span class="hl-identifier">has</span><span class="hl-code"> </span><span class="hl-identifier">now</span><span class="hl-code"> </span><span class="hl-identifier">moved</span><span class="hl-code"> </span><span class="hl-identifier">close</span><span class="hl-code"> </span><span class="hl-identifier">to</span><span class="hl-code"> </span><span class="hl-identifier">the</span><span class="hl-code"> </span><span class="hl-identifier">top</span><span class="hl-code"> </span><span class="hl-identifier">corner</span><span class="hl-code"> </span><span class="hl-identifier">of</span><span class="hl-code"> </span><span class="hl-identifier">the</span><span class="hl-code"> </span><span class="hl-identifier">page</span><span class="hl-code">. </span><span class="hl-identifier">Any</span><span class="hl-code"> </span><span class="hl-identifier">ideas</span><span class="hl-code"> </span><span class="hl-identifier">what</span><span class="hl-code"> </span><span class="hl-identifier">could</span><span class="hl-code"> </span><span class="hl-identifier">be</span><span class="hl-code"> </span><span class="hl-identifier">going</span><span class="hl-code"> </span><span class="hl-identifier">on</span><span class="hl-code">?
 
</span><span class="hl-brackets">[</span><span class="hl-identifier">code</span><span class="hl-code">=</span><span class="hl-identifier">javascript</span><span class="hl-brackets">]</span><span class="hl-identifier">style</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-identifier">classes</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">ui-tooltip-red</span><span class="hl-quotes">'</span><span class="hl-code">,</span><span class="hl-identifier">tip</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">&lt;</span><span class="hl-identifier">span</span><span class="hl-code"> </span><span class="hl-identifier">style</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">font-weight: bold;</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt;</span><span class="hl-identifier">corner</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">bottom left</span><span class="hl-quotes">'</span><span class="hl-code">&lt;/</span><span class="hl-identifier">span</span><span class="hl-code">&gt;,</span><span class="hl-identifier">border</span><span class="hl-code">: </span><span class="hl-number">3</span><span class="hl-code">,</span><span class="hl-identifier">width</span><span class="hl-code">: </span><span class="hl-number">16</span><span class="hl-code">,</span><span class="hl-identifier">height</span><span class="hl-code">: </span><span class="hl-number">24</span><span class="hl-brackets">}</span><span class="hl-brackets">}</span></pre></td></tr></table></div><br />
<br />
I am using qTip2.0 with the qtips plugin found on this page: <a href="http://craigsworks.com/projects/qtip_new/download/" target="_blank">http://craigsworks.com/projects/qtip_new/download/</a><br />
I checked qTip Core, Speech Bubble Tips + IE6 form support and included jquery.qtip-custom.min.js in the footer of my page.<br />
<br />
This is the whole qtip declaration if that helps.<br />
<br />
<div class="hl-main"><table class="hl-table" width="100%"><tr><td class="hl-gutter" align="right" valign="top"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
</pre></td><td class="hl-main" valign="top"><pre><span class="hl-code">$</span><span class="hl-brackets">(</span><span class="hl-identifier">field</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">qtip</span><span class="hl-brackets">(</span><span class="hl-brackets">{</span><span class="hl-code">
                        </span><span class="hl-identifier">content</span><span class="hl-code">: </span><span class="hl-identifier">app</span><span class="hl-brackets">[</span><span class="hl-quotes">'</span><span class="hl-string">validateMessages</span><span class="hl-quotes">'</span><span class="hl-brackets">]</span><span class="hl-brackets">[</span><span class="hl-identifier">m</span><span class="hl-brackets">]</span><span class="hl-code">,
                        </span><span class="hl-identifier">style</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-identifier">classes</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">ui-tooltip-red</span><span class="hl-quotes">'</span><span class="hl-code">,</span><span class="hl-identifier">tip</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">
                              </span><span class="hl-identifier">corner</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">bottom left</span><span class="hl-quotes">'</span><span class="hl-code">,
                              </span><span class="hl-identifier">border</span><span class="hl-code">: </span><span class="hl-number">3</span><span class="hl-code">,
                              </span><span class="hl-identifier">width</span><span class="hl-code">: </span><span class="hl-number">16</span><span class="hl-code">,
                              </span><span class="hl-identifier">height</span><span class="hl-code">: </span><span class="hl-number">24</span><span class="hl-code">
                           </span><span class="hl-brackets">}</span><span class="hl-code">
                      </span><span class="hl-brackets">}</span><span class="hl-code">,
                        </span><span class="hl-identifier">position</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-identifier">my</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">left bottom</span><span class="hl-quotes">'</span><span class="hl-code">, </span><span class="hl-identifier">at</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">top right</span><span class="hl-quotes">'</span><span class="hl-brackets">}</span><span class="hl-code">,
                        </span><span class="hl-identifier">show</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-identifier">ready</span><span class="hl-code">: </span><span class="hl-reserved">true</span><span class="hl-code">,</span><span class="hl-identifier">event</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">resize</span><span class="hl-quotes">'</span><span class="hl-brackets">}</span><span class="hl-code">,
                        </span><span class="hl-identifier">hide</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">blur</span><span class="hl-quotes">'</span><span class="hl-code">
                  </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">;</span></pre></td></tr></table></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Solved&#93; Remove a qTip]]></title>
			<link>http://craigsworks.com/projects/forums/thread-solved-remove-a-qtip</link>
			<pubDate>Sun, 25 Jul 2010 05:55:16 -0700</pubDate>
			<guid isPermaLink="false">http://craigsworks.com/projects/forums/thread-solved-remove-a-qtip</guid>
			<description><![CDATA[I'm using qTip2.0 with JQuery 1.4.2. I am trying to remove a qTip on the fly. This must be possible, but I cannot find it through the documentation. <br />
<br />
I see in the "Changes from 1.0" sticky post a reference to "removeData". ( ex. &#36;('elem').removeData('qtip')); however, it doesn't remove the qTip. <br />
<br />
Any help is much appreciated.<hr />
Upon further review I have found the destroy method and it did the trick.<br />
<br />
&#36;('elem').qtip('destroy');]]></description>
			<content:encoded><![CDATA[I'm using qTip2.0 with JQuery 1.4.2. I am trying to remove a qTip on the fly. This must be possible, but I cannot find it through the documentation. <br />
<br />
I see in the "Changes from 1.0" sticky post a reference to "removeData". ( ex. &#36;('elem').removeData('qtip')); however, it doesn't remove the qTip. <br />
<br />
Any help is much appreciated.<hr />
Upon further review I have found the destroy method and it did the trick.<br />
<br />
&#36;('elem').qtip('destroy');]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How to destroy cached qtip and then recreate it]]></title>
			<link>http://craigsworks.com/projects/forums/thread-how-to-destroy-cached-qtip-and-then-recreate-it</link>
			<pubDate>Sat, 24 Jul 2010 09:48:02 -0700</pubDate>
			<guid isPermaLink="false">http://craigsworks.com/projects/forums/thread-how-to-destroy-cached-qtip-and-then-recreate-it</guid>
			<description><![CDATA[I have necessity to destroy a certain tooltip on hide.<br />
To solve it, I use:<br />
<br />
onHide: function()<br />
{<br />
     &#36;('#selector1, #selector2').qtip("destroy");<br />
}<br />
<br />
<span style="font-weight: bold;">My problem is that after destroying a tooltip this is no longer available!</span><br />
Trying to solve this problem I use <span style="font-weight: bold;">prerender: false</span>. Setting this attribute false, the tooltips will recreate in the future when necessary (am I doing wrong?).<br />
<br />
But it does't work... result: my tooltip are destroyed for ever. Why qTip behaves in this way? I've setted prerender to false correctly.<br />
<br />
I have real necessity to destroy tooltip because I'm using more #selectors associated to a tooltip (as you see: &#36;('#selector1, #selector2, etc...').qtip [...&#93; ). So I would free memory - after the tooltip is hidden - to avoid interferences.<br />
<br />
What am I doing wrong?<br />
<br />
Thanks for replies <img src="http://craigsworks.com/projects/forums/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" />]]></description>
			<content:encoded><![CDATA[I have necessity to destroy a certain tooltip on hide.<br />
To solve it, I use:<br />
<br />
onHide: function()<br />
{<br />
     &#36;('#selector1, #selector2').qtip("destroy");<br />
}<br />
<br />
<span style="font-weight: bold;">My problem is that after destroying a tooltip this is no longer available!</span><br />
Trying to solve this problem I use <span style="font-weight: bold;">prerender: false</span>. Setting this attribute false, the tooltips will recreate in the future when necessary (am I doing wrong?).<br />
<br />
But it does't work... result: my tooltip are destroyed for ever. Why qTip behaves in this way? I've setted prerender to false correctly.<br />
<br />
I have real necessity to destroy tooltip because I'm using more #selectors associated to a tooltip (as you see: &#36;('#selector1, #selector2, etc...').qtip [...] ). So I would free memory - after the tooltip is hidden - to avoid interferences.<br />
<br />
What am I doing wrong?<br />
<br />
Thanks for replies <img src="http://craigsworks.com/projects/forums/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[HTML containers as tool tips?]]></title>
			<link>http://craigsworks.com/projects/forums/thread-html-containers-as-tool-tips</link>
			<pubDate>Fri, 23 Jul 2010 18:59:47 -0700</pubDate>
			<guid isPermaLink="false">http://craigsworks.com/projects/forums/thread-html-containers-as-tool-tips</guid>
			<description><![CDATA[I was told that this tool tip should be used over simple tip because it is it's successor. <br />
<br />
I was using Simple Tip to create tool tips that contain HTML content such as images with text wrapped around it and also using the containing div to have a background image so my tips look a little bit more styled. <br />
<br />
Can you do this with q-tip like you can with Simple Tip???]]></description>
			<content:encoded><![CDATA[I was told that this tool tip should be used over simple tip because it is it's successor. <br />
<br />
I was using Simple Tip to create tool tips that contain HTML content such as images with text wrapped around it and also using the containing div to have a background image so my tips look a little bit more styled. <br />
<br />
Can you do this with q-tip like you can with Simple Tip???]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Solved&#93; How can I get the id of clicked element?]]></title>
			<link>http://craigsworks.com/projects/forums/thread-solved-how-can-i-get-the-id-of-clicked-element</link>
			<pubDate>Fri, 23 Jul 2010 05:57:16 -0700</pubDate>
			<guid isPermaLink="false">http://craigsworks.com/projects/forums/thread-solved-how-can-i-get-the-id-of-clicked-element</guid>
			<description><![CDATA[eg:<br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #007700">&#36;(</span><span style="color: #DD0000">'#my_id1,&nbsp;#my_id2,&nbsp;#my_id3'</span><span style="color: #007700">).</span><span style="color: #0000BB">qtip</span><span style="color: #007700">(<br />&nbsp;&nbsp;&nbsp;{&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">content</span><span style="color: #007700">:&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">url</span><span style="color: #007700">:&nbsp;</span><span style="color: #DD0000">'page.php'</span><span style="color: #007700">,<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">data</span><span style="color: #007700">:&nbsp;{&nbsp;</span><span style="color: #0000BB">id</span><span style="color: #007700">:&nbsp;&nbsp;&#36;(</span><span style="color: #0000BB">this</span><span style="color: #007700">).</span><span style="color: #0000BB">attr</span><span style="color: #007700">(</span><span style="color: #DD0000">'rel'</span><span style="color: #007700">)&nbsp;},&nbsp;&lt;--&nbsp;</span><span style="color: #0000BB">dont&nbsp;work</span><span style="color: #007700">!<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">method</span><span style="color: #007700">:&nbsp;</span><span style="color: #DD0000">'post'</span><span style="color: #007700">,<br />.....&nbsp;<br /></span></code></div></div></div>
<br />
How can I get the id of clicked element? (or rel attribute, in my example)<br />
<br />
Thanks in advantage<hr />
<span style="font-weight: bold;">solved</span>.<br />
Paste in line #1068 these two lines of code:<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">idFired&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">self</span><span style="color: #007700">.</span><span style="color: #0000BB">elements</span><span style="color: #007700">.</span><span style="color: #0000BB">target</span><span style="color: #007700">.</span><span style="color: #0000BB">attr</span><span style="color: #007700">(</span><span style="color: #DD0000">'rel'</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">relFired&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">self</span><span style="color: #007700">.</span><span style="color: #0000BB">elements</span><span style="color: #007700">.</span><span style="color: #0000BB">target</span><span style="color: #007700">.</span><span style="color: #0000BB">attr</span><span style="color: #007700">(</span><span style="color: #DD0000">'rel'</span><span style="color: #007700">);&nbsp;<br /></span></code></div></div></div>
;<br />
<br />
an than use API:<br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #007700">&#36;(</span><span style="color: #DD0000">'#id1,&nbsp;#id2,&nbsp;#id3'</span><span style="color: #007700">).</span><span style="color: #0000BB">qtip</span><span style="color: #007700">(<br />....<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">api</span><span style="color: #007700">:&nbsp;{&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">beforeRender</span><span style="color: #007700">:&nbsp;function()<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">alert</span><span style="color: #007700">(&nbsp;</span><span style="color: #0000BB">idFired&nbsp;</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">alert</span><span style="color: #007700">(&nbsp;</span><span style="color: #0000BB">relFired&nbsp;</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />....<br />}&nbsp;<br /></span></code></div></div></div>
]]></description>
			<content:encoded><![CDATA[eg:<br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #007700">&#36;(</span><span style="color: #DD0000">'#my_id1,&nbsp;#my_id2,&nbsp;#my_id3'</span><span style="color: #007700">).</span><span style="color: #0000BB">qtip</span><span style="color: #007700">(<br />&nbsp;&nbsp;&nbsp;{&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">content</span><span style="color: #007700">:&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">url</span><span style="color: #007700">:&nbsp;</span><span style="color: #DD0000">'page.php'</span><span style="color: #007700">,<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">data</span><span style="color: #007700">:&nbsp;{&nbsp;</span><span style="color: #0000BB">id</span><span style="color: #007700">:&nbsp;&nbsp;&#36;(</span><span style="color: #0000BB">this</span><span style="color: #007700">).</span><span style="color: #0000BB">attr</span><span style="color: #007700">(</span><span style="color: #DD0000">'rel'</span><span style="color: #007700">)&nbsp;},&nbsp;&lt;--&nbsp;</span><span style="color: #0000BB">dont&nbsp;work</span><span style="color: #007700">!<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">method</span><span style="color: #007700">:&nbsp;</span><span style="color: #DD0000">'post'</span><span style="color: #007700">,<br />.....&nbsp;<br /></span></code></div></div></div>
<br />
How can I get the id of clicked element? (or rel attribute, in my example)<br />
<br />
Thanks in advantage<hr />
<span style="font-weight: bold;">solved</span>.<br />
Paste in line #1068 these two lines of code:<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">idFired&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">self</span><span style="color: #007700">.</span><span style="color: #0000BB">elements</span><span style="color: #007700">.</span><span style="color: #0000BB">target</span><span style="color: #007700">.</span><span style="color: #0000BB">attr</span><span style="color: #007700">(</span><span style="color: #DD0000">'rel'</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">relFired&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">self</span><span style="color: #007700">.</span><span style="color: #0000BB">elements</span><span style="color: #007700">.</span><span style="color: #0000BB">target</span><span style="color: #007700">.</span><span style="color: #0000BB">attr</span><span style="color: #007700">(</span><span style="color: #DD0000">'rel'</span><span style="color: #007700">);&nbsp;<br /></span></code></div></div></div>
;<br />
<br />
an than use API:<br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #007700">&#36;(</span><span style="color: #DD0000">'#id1,&nbsp;#id2,&nbsp;#id3'</span><span style="color: #007700">).</span><span style="color: #0000BB">qtip</span><span style="color: #007700">(<br />....<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">api</span><span style="color: #007700">:&nbsp;{&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">beforeRender</span><span style="color: #007700">:&nbsp;function()<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">alert</span><span style="color: #007700">(&nbsp;</span><span style="color: #0000BB">idFired&nbsp;</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">alert</span><span style="color: #007700">(&nbsp;</span><span style="color: #0000BB">relFired&nbsp;</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />....<br />}&nbsp;<br /></span></code></div></div></div>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[qtip + maphighlight problem]]></title>
			<link>http://craigsworks.com/projects/forums/thread-qtip-maphighlight-problem</link>
			<pubDate>Thu, 22 Jul 2010 09:22:08 -0700</pubDate>
			<guid isPermaLink="false">http://craigsworks.com/projects/forums/thread-qtip-maphighlight-problem</guid>
			<description><![CDATA[Hi,<br />
I'm using qtip with maphighlight. There is a problem generally in IE. When tooltip shows up it spoils the maphighlit, area is once highlited, then shows tooltip, and the area is broken down - no more map highlight works on this area.<br />
<br />
When I comment qtip everything works fine.<br />
<br />
Had anybody similar problem?]]></description>
			<content:encoded><![CDATA[Hi,<br />
I'm using qtip with maphighlight. There is a problem generally in IE. When tooltip shows up it spoils the maphighlit, area is once highlited, then shows tooltip, and the area is broken down - no more map highlight works on this area.<br />
<br />
When I comment qtip everything works fine.<br />
<br />
Had anybody similar problem?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Loading html into content text, and keeping tip open on mouseover]]></title>
			<link>http://craigsworks.com/projects/forums/thread-loading-html-into-content-text-and-keeping-tip-open-on-mouseover</link>
			<pubDate>Thu, 22 Jul 2010 08:25:22 -0700</pubDate>
			<guid isPermaLink="false">http://craigsworks.com/projects/forums/thread-loading-html-into-content-text-and-keeping-tip-open-on-mouseover</guid>
			<description><![CDATA[Hi, <br />
<br />
Is it possible to do something like:<br />
<br />
<div class="hl-main"><table class="hl-table" width="100%"><tr><td class="hl-gutter" align="right" valign="top"><pre>1
2
3
4
5
6
7
</pre></td><td class="hl-main" valign="top"><pre><span class="hl-code">$</span><span class="hl-brackets">(</span><span class="hl-quotes">'</span><span class="hl-string">.tip</span><span class="hl-quotes">'</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">each</span><span class="hl-brackets">(</span><span class="hl-reserved">function</span><span class="hl-code"> </span><span class="hl-brackets">(</span><span class="hl-brackets">)</span><span class="hl-code"> </span><span class="hl-brackets">{</span><span class="hl-code">
   $</span><span class="hl-brackets">(</span><span class="hl-reserved">this</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">qtip</span><span class="hl-brackets">(</span><span class="hl-brackets">{</span><span class="hl-code">
      </span><span class="hl-identifier">content</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">
         </span><span class="hl-identifier">text</span><span class="hl-code">: $</span><span class="hl-brackets">(</span><span class="hl-reserved">this</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">next</span><span class="hl-brackets">(</span><span class="hl-quotes">'</span><span class="hl-string">.product_info</span><span class="hl-quotes">'</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">html</span><span class="hl-brackets">(</span><span class="hl-brackets">)</span><span class="hl-code">;
      </span><span class="hl-brackets">}</span><span class="hl-code">
   </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">;
</span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">;</span></pre></td></tr></table></div><br />
<br />
Basically I want the contents of ".product_info" to show up in the tip as html. I understand I can put html in "text" but I just want to duplicate ".product_info" The contents would contain a link... I can't seem to keep the tip open when mousing over either... ???<br />
<br />
Thanks]]></description>
			<content:encoded><![CDATA[Hi, <br />
<br />
Is it possible to do something like:<br />
<br />
<div class="hl-main"><table class="hl-table" width="100%"><tr><td class="hl-gutter" align="right" valign="top"><pre>1
2
3
4
5
6
7
</pre></td><td class="hl-main" valign="top"><pre><span class="hl-code">$</span><span class="hl-brackets">(</span><span class="hl-quotes">'</span><span class="hl-string">.tip</span><span class="hl-quotes">'</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">each</span><span class="hl-brackets">(</span><span class="hl-reserved">function</span><span class="hl-code"> </span><span class="hl-brackets">(</span><span class="hl-brackets">)</span><span class="hl-code"> </span><span class="hl-brackets">{</span><span class="hl-code">
   $</span><span class="hl-brackets">(</span><span class="hl-reserved">this</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">qtip</span><span class="hl-brackets">(</span><span class="hl-brackets">{</span><span class="hl-code">
      </span><span class="hl-identifier">content</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">
         </span><span class="hl-identifier">text</span><span class="hl-code">: $</span><span class="hl-brackets">(</span><span class="hl-reserved">this</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">next</span><span class="hl-brackets">(</span><span class="hl-quotes">'</span><span class="hl-string">.product_info</span><span class="hl-quotes">'</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">html</span><span class="hl-brackets">(</span><span class="hl-brackets">)</span><span class="hl-code">;
      </span><span class="hl-brackets">}</span><span class="hl-code">
   </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">;
</span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">;</span></pre></td></tr></table></div><br />
<br />
Basically I want the contents of ".product_info" to show up in the tip as html. I understand I can put html in "text" but I just want to duplicate ".product_info" The contents would contain a link... I can't seem to keep the tip open when mousing over either... ???<br />
<br />
Thanks]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Qtip not showing 100% or not at all]]></title>
			<link>http://craigsworks.com/projects/forums/thread-qtip-not-showing-100-or-not-at-all</link>
			<pubDate>Wed, 21 Jul 2010 23:27:39 -0700</pubDate>
			<guid isPermaLink="false">http://craigsworks.com/projects/forums/thread-qtip-not-showing-100-or-not-at-all</guid>
			<description><![CDATA[Hi,<br />
I just started using qtip, so bare with me if I am making rudimentary mistakes in the code. I am displaying tooltis on &lt;a&gt; tags here <a href="http://www.lamedaskincare.se/index_new.php" target="_blank">http://www.lamedaskincare.se/index_new.php</a> but after a while of rolling over the links the tips are not showing or they are showng at maybe 10% transparency. sometimes the tips are overlapping eachother een though i have set the solo setting to true... here is my javascript<br />
<br />
<div class="hl-main"><table class="hl-table" width="100%"><tr><td class="hl-gutter" align="right" valign="top"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
</pre></td><td class="hl-main" valign="top"><pre><span class="hl-code">$</span><span class="hl-brackets">(</span><span class="hl-quotes">'</span><span class="hl-string">a.tip</span><span class="hl-quotes">'</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">each</span><span class="hl-brackets">(</span><span class="hl-reserved">function</span><span class="hl-brackets">(</span><span class="hl-brackets">)</span><span class="hl-brackets">{</span><span class="hl-code">
      </span><span class="hl-comment">//</span><span class="hl-comment">e.preventDefault();</span><span class="hl-comment"></span><span class="hl-code">
      </span><span class="hl-reserved">var</span><span class="hl-code"> </span><span class="hl-identifier">pid</span><span class="hl-code"> = $</span><span class="hl-brackets">(</span><span class="hl-reserved">this</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">attr</span><span class="hl-brackets">(</span><span class="hl-quotes">'</span><span class="hl-string">id</span><span class="hl-quotes">'</span><span class="hl-brackets">)</span><span class="hl-code">;
      $</span><span class="hl-brackets">(</span><span class="hl-reserved">this</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">qtip</span><span class="hl-brackets">(</span><span class="hl-code">
      </span><span class="hl-brackets">{</span><span class="hl-code">
         </span><span class="hl-identifier">content</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">
            </span><span class="hl-comment">//</span><span class="hl-comment"> Set the text to an image HTML string with the correct src URL to the loading image you want to use</span><span class="hl-comment"></span><span class="hl-code">
            </span><span class="hl-identifier">text</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">&lt;img class=&quot;throbber&quot; src=&quot;new_img/working.gif&quot; alt=&quot;Loading...&quot; /&gt;</span><span class="hl-quotes">'</span><span class="hl-code">,
            </span><span class="hl-identifier">url</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">ajax/tooltip.php</span><span class="hl-quotes">'</span><span class="hl-code">, </span><span class="hl-comment">//</span><span class="hl-comment"> Use the rel attribute of each element for the url to load</span><span class="hl-comment"></span><span class="hl-code">
            </span><span class="hl-identifier">data</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-identifier">id</span><span class="hl-code">: </span><span class="hl-identifier">pid</span><span class="hl-code"> </span><span class="hl-brackets">}</span><span class="hl-code">,
            </span><span class="hl-identifier">title</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">
               </span><span class="hl-identifier">text</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">Produkt - </span><span class="hl-quotes">'</span><span class="hl-code"> + </span><span class="hl-identifier">pid</span><span class="hl-code">, </span><span class="hl-comment">//</span><span class="hl-comment"> Give the tooltip a title using each elements text</span><span class="hl-comment"></span><span class="hl-code">
               </span><span class="hl-identifier">button</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">St&amp;auml;ng ruta</span><span class="hl-quotes">'</span><span class="hl-code"> </span><span class="hl-comment">//</span><span class="hl-comment"> Show a close link in the title</span><span class="hl-comment"></span><span class="hl-code">
            </span><span class="hl-brackets">}</span><span class="hl-code">
         </span><span class="hl-brackets">}</span><span class="hl-code">,
         </span><span class="hl-identifier">position</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">
            </span><span class="hl-identifier">corner</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">
               </span><span class="hl-identifier">target</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">rightMiddle</span><span class="hl-quotes">'</span><span class="hl-code">, </span><span class="hl-comment">//</span><span class="hl-comment"> Position the tooltip above the link</span><span class="hl-comment"></span><span class="hl-code">
               </span><span class="hl-identifier">tooltip</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">leftMiddle</span><span class="hl-quotes">'</span><span class="hl-code">
            </span><span class="hl-brackets">}</span><span class="hl-code">,
            </span><span class="hl-identifier">adjust</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">
               </span><span class="hl-identifier">screen</span><span class="hl-code">: </span><span class="hl-reserved">true</span><span class="hl-code"> </span><span class="hl-comment">//</span><span class="hl-comment"> Keep the tooltip on-screen at all times</span><span class="hl-comment"></span><span class="hl-code">
            </span><span class="hl-brackets">}</span><span class="hl-code">
         </span><span class="hl-brackets">}</span><span class="hl-code">,
         </span><span class="hl-identifier">show</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code"> 
            </span><span class="hl-identifier">when</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">mouseover</span><span class="hl-quotes">'</span><span class="hl-code">, 
            </span><span class="hl-identifier">solo</span><span class="hl-code">: </span><span class="hl-reserved">true</span><span class="hl-code"> </span><span class="hl-comment">//</span><span class="hl-comment"> Only show one tooltip at a time</span><span class="hl-comment"></span><span class="hl-code">
         </span><span class="hl-brackets">}</span><span class="hl-code">,
         </span><span class="hl-identifier">hide</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">unfocus</span><span class="hl-quotes">'</span><span class="hl-code">,
         </span><span class="hl-identifier">style</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">
            </span><span class="hl-identifier">tip</span><span class="hl-code">: </span><span class="hl-reserved">true</span><span class="hl-code">, </span><span class="hl-comment">//</span><span class="hl-comment"> Apply a speech bubble tip to the tooltip at the designated tooltip corner</span><span class="hl-comment"></span><span class="hl-code">
            </span><span class="hl-identifier">border</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">
               </span><span class="hl-identifier">width</span><span class="hl-code">: </span><span class="hl-number">0</span><span class="hl-code">,
               </span><span class="hl-identifier">radius</span><span class="hl-code">: </span><span class="hl-number">4</span><span class="hl-code">
            </span><span class="hl-brackets">}</span><span class="hl-code">,
            </span><span class="hl-identifier">name</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">light</span><span class="hl-quotes">'</span><span class="hl-code">, </span><span class="hl-comment">//</span><span class="hl-comment"> Use the default light style</span><span class="hl-comment"></span><span class="hl-code">
            </span><span class="hl-identifier">width</span><span class="hl-code">: </span><span class="hl-number">450</span><span class="hl-code"> </span><span class="hl-comment">//</span><span class="hl-comment"> Set the tooltip width</span><span class="hl-comment"></span><span class="hl-code">
         </span><span class="hl-brackets">}</span><span class="hl-code">
      </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span></pre></td></tr></table></div><br />
<br />
Appreciate any help... thanks]]></description>
			<content:encoded><![CDATA[Hi,<br />
I just started using qtip, so bare with me if I am making rudimentary mistakes in the code. I am displaying tooltis on &lt;a&gt; tags here <a href="http://www.lamedaskincare.se/index_new.php" target="_blank">http://www.lamedaskincare.se/index_new.php</a> but after a while of rolling over the links the tips are not showing or they are showng at maybe 10% transparency. sometimes the tips are overlapping eachother een though i have set the solo setting to true... here is my javascript<br />
<br />
<div class="hl-main"><table class="hl-table" width="100%"><tr><td class="hl-gutter" align="right" valign="top"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
</pre></td><td class="hl-main" valign="top"><pre><span class="hl-code">$</span><span class="hl-brackets">(</span><span class="hl-quotes">'</span><span class="hl-string">a.tip</span><span class="hl-quotes">'</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">each</span><span class="hl-brackets">(</span><span class="hl-reserved">function</span><span class="hl-brackets">(</span><span class="hl-brackets">)</span><span class="hl-brackets">{</span><span class="hl-code">
      </span><span class="hl-comment">//</span><span class="hl-comment">e.preventDefault();</span><span class="hl-comment"></span><span class="hl-code">
      </span><span class="hl-reserved">var</span><span class="hl-code"> </span><span class="hl-identifier">pid</span><span class="hl-code"> = $</span><span class="hl-brackets">(</span><span class="hl-reserved">this</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">attr</span><span class="hl-brackets">(</span><span class="hl-quotes">'</span><span class="hl-string">id</span><span class="hl-quotes">'</span><span class="hl-brackets">)</span><span class="hl-code">;
      $</span><span class="hl-brackets">(</span><span class="hl-reserved">this</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">qtip</span><span class="hl-brackets">(</span><span class="hl-code">
      </span><span class="hl-brackets">{</span><span class="hl-code">
         </span><span class="hl-identifier">content</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">
            </span><span class="hl-comment">//</span><span class="hl-comment"> Set the text to an image HTML string with the correct src URL to the loading image you want to use</span><span class="hl-comment"></span><span class="hl-code">
            </span><span class="hl-identifier">text</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">&lt;img class=&quot;throbber&quot; src=&quot;new_img/working.gif&quot; alt=&quot;Loading...&quot; /&gt;</span><span class="hl-quotes">'</span><span class="hl-code">,
            </span><span class="hl-identifier">url</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">ajax/tooltip.php</span><span class="hl-quotes">'</span><span class="hl-code">, </span><span class="hl-comment">//</span><span class="hl-comment"> Use the rel attribute of each element for the url to load</span><span class="hl-comment"></span><span class="hl-code">
            </span><span class="hl-identifier">data</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-identifier">id</span><span class="hl-code">: </span><span class="hl-identifier">pid</span><span class="hl-code"> </span><span class="hl-brackets">}</span><span class="hl-code">,
            </span><span class="hl-identifier">title</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">
               </span><span class="hl-identifier">text</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">Produkt - </span><span class="hl-quotes">'</span><span class="hl-code"> + </span><span class="hl-identifier">pid</span><span class="hl-code">, </span><span class="hl-comment">//</span><span class="hl-comment"> Give the tooltip a title using each elements text</span><span class="hl-comment"></span><span class="hl-code">
               </span><span class="hl-identifier">button</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">St&amp;auml;ng ruta</span><span class="hl-quotes">'</span><span class="hl-code"> </span><span class="hl-comment">//</span><span class="hl-comment"> Show a close link in the title</span><span class="hl-comment"></span><span class="hl-code">
            </span><span class="hl-brackets">}</span><span class="hl-code">
         </span><span class="hl-brackets">}</span><span class="hl-code">,
         </span><span class="hl-identifier">position</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">
            </span><span class="hl-identifier">corner</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">
               </span><span class="hl-identifier">target</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">rightMiddle</span><span class="hl-quotes">'</span><span class="hl-code">, </span><span class="hl-comment">//</span><span class="hl-comment"> Position the tooltip above the link</span><span class="hl-comment"></span><span class="hl-code">
               </span><span class="hl-identifier">tooltip</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">leftMiddle</span><span class="hl-quotes">'</span><span class="hl-code">
            </span><span class="hl-brackets">}</span><span class="hl-code">,
            </span><span class="hl-identifier">adjust</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">
               </span><span class="hl-identifier">screen</span><span class="hl-code">: </span><span class="hl-reserved">true</span><span class="hl-code"> </span><span class="hl-comment">//</span><span class="hl-comment"> Keep the tooltip on-screen at all times</span><span class="hl-comment"></span><span class="hl-code">
            </span><span class="hl-brackets">}</span><span class="hl-code">
         </span><span class="hl-brackets">}</span><span class="hl-code">,
         </span><span class="hl-identifier">show</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code"> 
            </span><span class="hl-identifier">when</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">mouseover</span><span class="hl-quotes">'</span><span class="hl-code">, 
            </span><span class="hl-identifier">solo</span><span class="hl-code">: </span><span class="hl-reserved">true</span><span class="hl-code"> </span><span class="hl-comment">//</span><span class="hl-comment"> Only show one tooltip at a time</span><span class="hl-comment"></span><span class="hl-code">
         </span><span class="hl-brackets">}</span><span class="hl-code">,
         </span><span class="hl-identifier">hide</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">unfocus</span><span class="hl-quotes">'</span><span class="hl-code">,
         </span><span class="hl-identifier">style</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">
            </span><span class="hl-identifier">tip</span><span class="hl-code">: </span><span class="hl-reserved">true</span><span class="hl-code">, </span><span class="hl-comment">//</span><span class="hl-comment"> Apply a speech bubble tip to the tooltip at the designated tooltip corner</span><span class="hl-comment"></span><span class="hl-code">
            </span><span class="hl-identifier">border</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">
               </span><span class="hl-identifier">width</span><span class="hl-code">: </span><span class="hl-number">0</span><span class="hl-code">,
               </span><span class="hl-identifier">radius</span><span class="hl-code">: </span><span class="hl-number">4</span><span class="hl-code">
            </span><span class="hl-brackets">}</span><span class="hl-code">,
            </span><span class="hl-identifier">name</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">light</span><span class="hl-quotes">'</span><span class="hl-code">, </span><span class="hl-comment">//</span><span class="hl-comment"> Use the default light style</span><span class="hl-comment"></span><span class="hl-code">
            </span><span class="hl-identifier">width</span><span class="hl-code">: </span><span class="hl-number">450</span><span class="hl-code"> </span><span class="hl-comment">//</span><span class="hl-comment"> Set the tooltip width</span><span class="hl-comment"></span><span class="hl-code">
         </span><span class="hl-brackets">}</span><span class="hl-code">
      </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span></pre></td></tr></table></div><br />
<br />
Appreciate any help... thanks]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[fade out qTip after 'x' seconds (even with mouseover still active)]]></title>
			<link>http://craigsworks.com/projects/forums/thread-fade-out-qtip-after-x-seconds-even-with-mouseover-still-active</link>
			<pubDate>Tue, 20 Jul 2010 12:54:24 -0700</pubDate>
			<guid isPermaLink="false">http://craigsworks.com/projects/forums/thread-fade-out-qtip-after-x-seconds-even-with-mouseover-still-active</guid>
			<description><![CDATA[Hi<br />
<br />
I am wondering if there is a way to have qTips fade out after a set number of milliseconds, even if the user is still hovering over the div that the qTip is assigned to.<br />
<br />
Ideally I would only like the qTip to show for a couple of seconds, even if the mouseover is still active.<br />
<br />
Thanks<br />
<br />
Nick]]></description>
			<content:encoded><![CDATA[Hi<br />
<br />
I am wondering if there is a way to have qTips fade out after a set number of milliseconds, even if the user is still hovering over the div that the qTip is assigned to.<br />
<br />
Ideally I would only like the qTip to show for a couple of seconds, even if the mouseover is still active.<br />
<br />
Thanks<br />
<br />
Nick]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Wordpress integration]]></title>
			<link>http://craigsworks.com/projects/forums/thread-wordpress-integration</link>
			<pubDate>Sun, 18 Jul 2010 12:51:56 -0700</pubDate>
			<guid isPermaLink="false">http://craigsworks.com/projects/forums/thread-wordpress-integration</guid>
			<description><![CDATA[Hi Craig, <br />
<br />
awesome work. I'd really love to use qtips on my website, too. I am running on wordpress and somehow cannot figure out how to get it running. Maybe you can help, or someone else managed to install qtips in Wordpress and can help. <br />
<br />
1. Is it possible to insert the script into a single page in wordpress, like this:<br />
<div class="hl-main"><table class="hl-table" width="100%"><tr><td class="hl-gutter" align="right" valign="top"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
</pre></td><td class="hl-main" valign="top"><pre><span class="hl-code">&lt;</span><span class="hl-identifier">div</span><span class="hl-code"> </span><span class="hl-identifier">id</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">apple</span><span class="hl-quotes">&quot;</span><span class="hl-code"> </span><span class="hl-reserved">class</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">test</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt;&lt;</span><span class="hl-identifier">a</span><span class="hl-code"> </span><span class="hl-identifier">href</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">#</span><span class="hl-quotes">&quot;</span><span class="hl-code"> </span><span class="hl-identifier">title</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">The Big Apple</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt;</span><span class="hl-identifier">New</span><span class="hl-code"> </span><span class="hl-identifier">York</span><span class="hl-code">&lt;/</span><span class="hl-identifier">a</span><span class="hl-code">&gt;&lt;/</span><span class="hl-identifier">div</span><span class="hl-code">&gt;
 
&lt;</span><span class="hl-identifier">script</span><span class="hl-code"> </span><span class="hl-reserved">class</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">test</span><span class="hl-quotes">&quot;</span><span class="hl-code"> </span><span class="hl-identifier">type</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">text/javascript</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt; 
</span><span class="hl-comment">//</span><span class="hl-comment"> Create the tooltips only on document load</span><span class="hl-comment"></span><span class="hl-code">
$</span><span class="hl-brackets">(</span><span class="hl-builtin">document</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">ready</span><span class="hl-brackets">(</span><span class="hl-reserved">function</span><span class="hl-brackets">(</span><span class="hl-brackets">)</span><span class="hl-code"> 
</span><span class="hl-brackets">{</span><span class="hl-code">
   </span><span class="hl-comment">//</span><span class="hl-comment"> By suppling no content attribute, the library uses each elements title attribute by default</span><span class="hl-comment"></span><span class="hl-code">
   $</span><span class="hl-brackets">(</span><span class="hl-quotes">'</span><span class="hl-string">#apple a[href&#93;[title&#93;</span><span class="hl-quotes">'</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">qtip</span><span class="hl-brackets">(</span><span class="hl-brackets">{</span><span class="hl-code">
      </span><span class="hl-identifier">content</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">
         </span><span class="hl-identifier">text</span><span class="hl-code">: </span><span class="hl-reserved">false</span><span class="hl-code"> </span><span class="hl-comment">//</span><span class="hl-comment"> Use each elements title attribute</span><span class="hl-comment"></span><span class="hl-code">
      </span><span class="hl-brackets">}</span><span class="hl-code">,
      </span><span class="hl-identifier">style</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">cream</span><span class="hl-quotes">'</span><span class="hl-code"> </span><span class="hl-comment">//</span><span class="hl-comment"> Give it some style</span><span class="hl-comment"></span><span class="hl-code">
   </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">;
   
   </span><span class="hl-comment">//</span><span class="hl-comment"> </span><span class="hl-inlinedoc">NOTE:</span><span class="hl-comment"> You can even omit all options and simply replace the regular title tooltips like so:</span><span class="hl-comment"></span><span class="hl-code">
   </span><span class="hl-comment">//</span><span class="hl-comment"> $('#content a[href&#93;').qtip();</span><span class="hl-comment"></span><span class="hl-code">
</span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">;
&lt;/</span><span class="hl-identifier">script</span><span class="hl-code">&gt;</span></pre></td></tr></table></div><br />
<br />
2. Right now I cannot still figure out whether the problem is that jQuery is not loading, or my qtip code is simply wrong or maybe it is wordpress specific. Does anyone have more experience with wordpress integration and can help with calling jquery?]]></description>
			<content:encoded><![CDATA[Hi Craig, <br />
<br />
awesome work. I'd really love to use qtips on my website, too. I am running on wordpress and somehow cannot figure out how to get it running. Maybe you can help, or someone else managed to install qtips in Wordpress and can help. <br />
<br />
1. Is it possible to insert the script into a single page in wordpress, like this:<br />
<div class="hl-main"><table class="hl-table" width="100%"><tr><td class="hl-gutter" align="right" valign="top"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
</pre></td><td class="hl-main" valign="top"><pre><span class="hl-code">&lt;</span><span class="hl-identifier">div</span><span class="hl-code"> </span><span class="hl-identifier">id</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">apple</span><span class="hl-quotes">&quot;</span><span class="hl-code"> </span><span class="hl-reserved">class</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">test</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt;&lt;</span><span class="hl-identifier">a</span><span class="hl-code"> </span><span class="hl-identifier">href</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">#</span><span class="hl-quotes">&quot;</span><span class="hl-code"> </span><span class="hl-identifier">title</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">The Big Apple</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt;</span><span class="hl-identifier">New</span><span class="hl-code"> </span><span class="hl-identifier">York</span><span class="hl-code">&lt;/</span><span class="hl-identifier">a</span><span class="hl-code">&gt;&lt;/</span><span class="hl-identifier">div</span><span class="hl-code">&gt;
 
&lt;</span><span class="hl-identifier">script</span><span class="hl-code"> </span><span class="hl-reserved">class</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">test</span><span class="hl-quotes">&quot;</span><span class="hl-code"> </span><span class="hl-identifier">type</span><span class="hl-code">=</span><span class="hl-quotes">&quot;</span><span class="hl-string">text/javascript</span><span class="hl-quotes">&quot;</span><span class="hl-code">&gt; 
</span><span class="hl-comment">//</span><span class="hl-comment"> Create the tooltips only on document load</span><span class="hl-comment"></span><span class="hl-code">
$</span><span class="hl-brackets">(</span><span class="hl-builtin">document</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">ready</span><span class="hl-brackets">(</span><span class="hl-reserved">function</span><span class="hl-brackets">(</span><span class="hl-brackets">)</span><span class="hl-code"> 
</span><span class="hl-brackets">{</span><span class="hl-code">
   </span><span class="hl-comment">//</span><span class="hl-comment"> By suppling no content attribute, the library uses each elements title attribute by default</span><span class="hl-comment"></span><span class="hl-code">
   $</span><span class="hl-brackets">(</span><span class="hl-quotes">'</span><span class="hl-string">#apple a[href][title]</span><span class="hl-quotes">'</span><span class="hl-brackets">)</span><span class="hl-code">.</span><span class="hl-identifier">qtip</span><span class="hl-brackets">(</span><span class="hl-brackets">{</span><span class="hl-code">
      </span><span class="hl-identifier">content</span><span class="hl-code">: </span><span class="hl-brackets">{</span><span class="hl-code">
         </span><span class="hl-identifier">text</span><span class="hl-code">: </span><span class="hl-reserved">false</span><span class="hl-code"> </span><span class="hl-comment">//</span><span class="hl-comment"> Use each elements title attribute</span><span class="hl-comment"></span><span class="hl-code">
      </span><span class="hl-brackets">}</span><span class="hl-code">,
      </span><span class="hl-identifier">style</span><span class="hl-code">: </span><span class="hl-quotes">'</span><span class="hl-string">cream</span><span class="hl-quotes">'</span><span class="hl-code"> </span><span class="hl-comment">//</span><span class="hl-comment"> Give it some style</span><span class="hl-comment"></span><span class="hl-code">
   </span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">;
   
   </span><span class="hl-comment">//</span><span class="hl-comment"> </span><span class="hl-inlinedoc">NOTE:</span><span class="hl-comment"> You can even omit all options and simply replace the regular title tooltips like so:</span><span class="hl-comment"></span><span class="hl-code">
   </span><span class="hl-comment">//</span><span class="hl-comment"> $('#content a[href]').qtip();</span><span class="hl-comment"></span><span class="hl-code">
</span><span class="hl-brackets">}</span><span class="hl-brackets">)</span><span class="hl-code">;
&lt;/</span><span class="hl-identifier">script</span><span class="hl-code">&gt;</span></pre></td></tr></table></div><br />
<br />
2. Right now I cannot still figure out whether the problem is that jQuery is not loading, or my qtip code is simply wrong or maybe it is wordpress specific. Does anyone have more experience with wordpress integration and can help with calling jquery?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Tip update/refresh and CSS scoping issue using JQuery UI scoped theme]]></title>
			<link>http://craigsworks.com/projects/forums/thread-tip-update-refresh-and-css-scoping-issue-using-jquery-ui-scoped-theme</link>
			<pubDate>Thu, 15 Jul 2010 16:41:58 -0700</pubDate>
			<guid isPermaLink="false">http://craigsworks.com/projects/forums/thread-tip-update-refresh-and-css-scoping-issue-using-jquery-ui-scoped-theme</guid>
			<description><![CDATA[Hi,<br />
<br />
I am using (and enjoying) qtip version 2, in conjunction with a scoped JQuery ui theme I created using THemeRoller. I really like the fact that qtip assumes the jqui without fuss, it's really great. <br />
However, I have a slight problem. To make the qtip use the scoped scheme instead of the unscoped theme (I have two themes on the page, one scoped and one regular), I need for it to be contained in a DIV which has the proper class which is used in the scoping of the theme.<br />
This is easily done using <br />
<br />
var outDiv = &#36;('&lt;div&gt;&lt;/div&gt;').addClass('scopingClass');<br />
&#36;('body').append(outDiv);<br />
and in the qtip() options-<br />
container: &#36;(outDiv)<br />
<br />
However, it seems that the tip is being put in the container only after the colors for the tip element are computed, so that the tip element (And the border, I think, or perhaps it is the background of the tooltip) are using the regular theme, instead of the scoped one. The rest of the tooltip content uses the scoped theme as it should. <br />
<br />
Any suggested fix for this?]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
I am using (and enjoying) qtip version 2, in conjunction with a scoped JQuery ui theme I created using THemeRoller. I really like the fact that qtip assumes the jqui without fuss, it's really great. <br />
However, I have a slight problem. To make the qtip use the scoped scheme instead of the unscoped theme (I have two themes on the page, one scoped and one regular), I need for it to be contained in a DIV which has the proper class which is used in the scoping of the theme.<br />
This is easily done using <br />
<br />
var outDiv = &#36;('&lt;div&gt;&lt;/div&gt;').addClass('scopingClass');<br />
&#36;('body').append(outDiv);<br />
and in the qtip() options-<br />
container: &#36;(outDiv)<br />
<br />
However, it seems that the tip is being put in the container only after the colors for the tip element are computed, so that the tip element (And the border, I think, or perhaps it is the background of the tooltip) are using the regular theme, instead of the scoped one. The rest of the tooltip content uses the scoped theme as it should. <br />
<br />
Any suggested fix for this?]]></content:encoded>
		</item>
	</channel>
</rss>