<?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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Tippy for WordPress</title>
	<atom:link href="http://croberts.me/tippy-for-wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://croberts.me</link>
	<description></description>
	<lastBuildDate>Thu, 10 May 2012 04:29:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Chris Roberts</title>
		<link>http://croberts.me/tippy-for-wordpress/comment-page-7/#comment-7759</link>
		<dc:creator>Chris Roberts</dc:creator>
		<pubDate>Mon, 07 May 2012 15:49:18 +0000</pubDate>
		<guid isPermaLink="false">http://croberts.me/?page_id=45#comment-7759</guid>
		<description>Lonnie,

Nothing in Tippy automatically filters out scripts, but I&#039;m seeing a similar issue where scripts cause a problem in the plugin. I&#039;ve never tried including javascript within a tippy tooltip and will have to give it a closer look to see why it&#039;s not working.</description>
		<content:encoded><![CDATA[<p>Lonnie,</p>
<p>Nothing in Tippy automatically filters out scripts, but I&#8217;m seeing a similar issue where scripts cause a problem in the plugin. I&#8217;ve never tried including javascript within a tippy tooltip and will have to give it a closer look to see why it&#8217;s not working.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lonnie</title>
		<link>http://croberts.me/tippy-for-wordpress/comment-page-7/#comment-7448</link>
		<dc:creator>Lonnie</dc:creator>
		<pubDate>Thu, 03 May 2012 15:54:27 +0000</pubDate>
		<guid isPermaLink="false">http://croberts.me/?page_id=45#comment-7448</guid>
		<description>I&#039;m trying to place a &lt;a href=&quot;http://www.fusioncharts.com/&quot; rel=&quot;nofollow&quot;&gt;fusionchart&lt;/a&gt; inside a Tippy tooltip, but when I publish my page (wordpress) the script tag that is used inside the tooltip is completed removed in the code. Is there a filter or something that keeps scripts from running inside a tippy tooltip? Thanks.</description>
		<content:encoded><![CDATA[<p>I&#8217;m trying to place a <a href="http://www.fusioncharts.com/" rel="nofollow">fusionchart</a> inside a Tippy tooltip, but when I publish my page (wordpress) the script tag that is used inside the tooltip is completed removed in the code. Is there a filter or something that keeps scripts from running inside a tippy tooltip? Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Hanson</title>
		<link>http://croberts.me/tippy-for-wordpress/comment-page-7/#comment-6554</link>
		<dc:creator>Tim Hanson</dc:creator>
		<pubDate>Fri, 20 Apr 2012 02:10:10 +0000</pubDate>
		<guid isPermaLink="false">http://croberts.me/?page_id=45#comment-6554</guid>
		<description>Chris,

Is there a way to get tippy to close instantly when you mouse away, right now there is a lag time.

I tried changing &quot;this.allowFreeze = true;&quot; to &quot;this.allowFreeze = false;&quot;
(only guessing here) but made no difference.

Thanks
Tim</description>
		<content:encoded><![CDATA[<p>Chris,</p>
<p>Is there a way to get tippy to close instantly when you mouse away, right now there is a lag time.</p>
<p>I tried changing &#8220;this.allowFreeze = true;&#8221; to &#8220;this.allowFreeze = false;&#8221;<br />
(only guessing here) but made no difference.</p>
<p>Thanks<br />
Tim</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Hanson</title>
		<link>http://croberts.me/tippy-for-wordpress/comment-page-7/#comment-5774</link>
		<dc:creator>Tim Hanson</dc:creator>
		<pubDate>Wed, 04 Apr 2012 18:58:15 +0000</pubDate>
		<guid isPermaLink="false">http://croberts.me/?page_id=45#comment-5774</guid>
		<description>Chris,
This works
&lt;code&gt;
add_action(&#039;wp_footer&#039;,&#039;myscript_in_footer&#039;);
function myscript_in_footer(){
?&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 jQuery(document).ready(function(){
   jQuery(&quot;*&quot;).delegate(&quot;div.domTip_tipBody&quot;,&quot;mouseover&quot;,function(){
    jQuery(&quot;#yyy a.tippy_link&quot;).css(&quot;background-color&quot;,&quot;#392281&quot;);
    }); 
    
   jQuery(&quot;*&quot;).delegate(&quot;div.domTip_tipBody&quot;,&quot;mouseout&quot;,function(){
    jQuery(&quot;#yyy a.tippy_link&quot;).css(&quot;background-color&quot;,&quot;transparent&quot;);
    }); 
   });
&lt;/script&gt;
&lt;?php
}
&lt;/code&gt;

I hope all this posting was not to annoying</description>
		<content:encoded><![CDATA[<p>Chris,<br />
This works</p>
<div class="codecolorer-container text dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">add_action('wp_footer','myscript_in_footer');<br />
function myscript_in_footer(){<br />
?&gt;<br />
&lt;script type=&quot;text/javascript&quot;&gt;<br />
&nbsp;jQuery(document).ready(function(){<br />
&nbsp; &nbsp;jQuery(&quot;*&quot;).delegate(&quot;div.domTip_tipBody&quot;,&quot;mouseover&quot;,function(){<br />
&nbsp; &nbsp; jQuery(&quot;#yyy a.tippy_link&quot;).css(&quot;background-color&quot;,&quot;#392281&quot;);<br />
&nbsp; &nbsp; }); <br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp;jQuery(&quot;*&quot;).delegate(&quot;div.domTip_tipBody&quot;,&quot;mouseout&quot;,function(){<br />
&nbsp; &nbsp; jQuery(&quot;#yyy a.tippy_link&quot;).css(&quot;background-color&quot;,&quot;transparent&quot;);<br />
&nbsp; &nbsp; }); <br />
&nbsp; &nbsp;});<br />
&lt;/script&gt;<br />
&lt;?php<br />
}</div></td></tr></tbody></table></div>
<p>I hope all this posting was not to annoying</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Hanson</title>
		<link>http://croberts.me/tippy-for-wordpress/comment-page-7/#comment-5753</link>
		<dc:creator>Tim Hanson</dc:creator>
		<pubDate>Wed, 04 Apr 2012 00:46:09 +0000</pubDate>
		<guid isPermaLink="false">http://croberts.me/?page_id=45#comment-5753</guid>
		<description>This part was left out of my comment above

I found a thread on a forum that had a similar question it suggested:

&quot;This looks like a jQuery event delegation issue. If the new DOM elements are added after the page has loaded, jQuery wont read them. So you need to tell jQuery before hand to bind an event if any such element exists now or in future.&quot;</description>
		<content:encoded><![CDATA[<p>This part was left out of my comment above</p>
<p>I found a thread on a forum that had a similar question it suggested:</p>
<p>&#8220;This looks like a jQuery event delegation issue. If the new DOM elements are added after the page has loaded, jQuery wont read them. So you need to tell jQuery before hand to bind an event if any such element exists now or in future.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Hanson</title>
		<link>http://croberts.me/tippy-for-wordpress/comment-page-7/#comment-5752</link>
		<dc:creator>Tim Hanson</dc:creator>
		<pubDate>Wed, 04 Apr 2012 00:44:16 +0000</pubDate>
		<guid isPermaLink="false">http://croberts.me/?page_id=45#comment-5752</guid>
		<description>Chris,
The function is running with elements not outputted by tippy, I tested with &#039;p&#039; in place of &#039;div.domTip_tipBody.domTip_noHeader&#039; and it worked as expected.

I found a thread on a forum that had a similar question it suggested:
&lt;blockquote cite=&quot;This looks like a jQuery event delegation issue. If the new DOM elements are added after the page has loaded, jQuery wont read them. So you need to tell jQuery before hand to bind an event if any such element exists now or in future.&quot;&gt;

and a code snippet that might work using .delegate, my attempt at translating it is:

&lt;code&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 jQuery(document).ready(function($){
    $.delegate(&#039;p&#039;,&#039;mouseover&#039;, function(e){ 
        jQuery(&quot;#yyy a.tippy_link&quot;).css(&quot;background-color&quot;,&quot;yellow&quot;);
    }); 

    $.delegate(&#039;p&#039;,&#039;mouseout&#039;, function(e){
        jQuery(&quot;#yyy a.tippy_link&quot;).css(&quot;background-color&quot;,&quot;red&quot;);
    }); 
    });  
&lt;/script&gt;
&lt;/code&gt;

But dose not work even with the &#039;p&#039; element, so I probably did not get the syntax right.

Dose this seem to you fruitful approach? if so can you see a syntax issue with it or is it just garbage and needs to be thrown out? (I know next to nothing about jquey) 

Thank you for all your comments.</description>
		<content:encoded><![CDATA[<p>Chris,<br />
The function is running with elements not outputted by tippy, I tested with &#8216;p&#8217; in place of &#8216;div.domTip_tipBody.domTip_noHeader&#8217; and it worked as expected.</p>
<p>I found a thread on a forum that had a similar question it suggested:</p>
<blockquote cite="This looks like a jQuery event delegation issue. If the new DOM elements are added after the page has loaded, jQuery wont read them. So you need to tell jQuery before hand to bind an event if any such element exists now or in future.">
<p>and a code snippet that might work using .delegate, my attempt at translating it is:</p>
<div class="codecolorer-container text dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&lt;script type=&quot;text/javascript&quot;&gt;<br />
&nbsp;jQuery(document).ready(function($){<br />
&nbsp; &nbsp; $.delegate('p','mouseover', function(e){ <br />
&nbsp; &nbsp; &nbsp; &nbsp; jQuery(&quot;#yyy a.tippy_link&quot;).css(&quot;background-color&quot;,&quot;yellow&quot;);<br />
&nbsp; &nbsp; }); <br />
<br />
&nbsp; &nbsp; $.delegate('p','mouseout', function(e){<br />
&nbsp; &nbsp; &nbsp; &nbsp; jQuery(&quot;#yyy a.tippy_link&quot;).css(&quot;background-color&quot;,&quot;red&quot;);<br />
&nbsp; &nbsp; }); <br />
&nbsp; &nbsp; }); &nbsp;<br />
&lt;/script&gt;</div></td></tr></tbody></table></div>
<p>But dose not work even with the &#8216;p&#8217; element, so I probably did not get the syntax right.</p>
<p>Dose this seem to you fruitful approach? if so can you see a syntax issue with it or is it just garbage and needs to be thrown out? (I know next to nothing about jquey) </p>
<p>Thank you for all your comments.</p></blockquote>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Roberts</title>
		<link>http://croberts.me/tippy-for-wordpress/comment-page-7/#comment-5744</link>
		<dc:creator>Chris Roberts</dc:creator>
		<pubDate>Tue, 03 Apr 2012 14:41:23 +0000</pubDate>
		<guid isPermaLink="false">http://croberts.me/?page_id=45#comment-5744</guid>
		<description>Tim,

On your first question, on styling, there is no way to add styling in the short code, it has to be done via css. From your second question I&#039;m guessing you figured that out?

On the second question, I&#039;ll have to fiddle with that. Are you sure it isn&#039;t matching the element? Could it be matching but not handling the mouseover/mouseout as you expect?</description>
		<content:encoded><![CDATA[<p>Tim,</p>
<p>On your first question, on styling, there is no way to add styling in the short code, it has to be done via css. From your second question I&#8217;m guessing you figured that out?</p>
<p>On the second question, I&#8217;ll have to fiddle with that. Are you sure it isn&#8217;t matching the element? Could it be matching but not handling the mouseover/mouseout as you expect?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Hanson</title>
		<link>http://croberts.me/tippy-for-wordpress/comment-page-7/#comment-5743</link>
		<dc:creator>Tim Hanson</dc:creator>
		<pubDate>Tue, 03 Apr 2012 13:15:16 +0000</pubDate>
		<guid isPermaLink="false">http://croberts.me/?page_id=45#comment-5743</guid>
		<description>Chris, I am using tippy with a shorcode and this part is working fine.

I am tiring to apply a JavaScript function to it:
&lt;code&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
  jQuery(document).ready(function(){
   jQuery(&quot;div.domTip_tipBody.domTip_noHeader&quot;).mouseover(function(){
   jQuery(&quot;#yyy a.tippy_link&quot;).css(&quot;background-color&quot;,&quot;yellow&quot;);});  

   jQuery(&quot;div.domTip_tipBody.domTip_noHeader&quot;).mouseout(function(){
   jQuery(&quot;#yyy a.tippy_link&quot;).css(&quot;background-color&quot;,&quot;green&quot;);
 }); 
 });  
 &lt;/script&gt;
&lt;/code&gt;

but the js is not reading any of the tippy elements e.g &quot;div.domTip_tipBody.domTip_noHeader&quot; Though they do work in my style.css

Asking if you had any ideas on how to get the js to read the tippy elements, or if you can say this will not work (so I can give up tiring to get it to work)

Thanks
Tim</description>
		<content:encoded><![CDATA[<p>Chris, I am using tippy with a shorcode and this part is working fine.</p>
<p>I am tiring to apply a JavaScript function to it:</p>
<div class="codecolorer-container text dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&lt;script type=&quot;text/javascript&quot;&gt;<br />
&nbsp; jQuery(document).ready(function(){<br />
&nbsp; &nbsp;jQuery(&quot;div.domTip_tipBody.domTip_noHeader&quot;).mouseover(function(){<br />
&nbsp; &nbsp;jQuery(&quot;#yyy a.tippy_link&quot;).css(&quot;background-color&quot;,&quot;yellow&quot;);}); &nbsp;<br />
<br />
&nbsp; &nbsp;jQuery(&quot;div.domTip_tipBody.domTip_noHeader&quot;).mouseout(function(){<br />
&nbsp; &nbsp;jQuery(&quot;#yyy a.tippy_link&quot;).css(&quot;background-color&quot;,&quot;green&quot;);<br />
&nbsp;}); <br />
&nbsp;}); &nbsp;<br />
&nbsp;&lt;/script&gt;</div></td></tr></tbody></table></div>
<p>but the js is not reading any of the tippy elements e.g &#8220;div.domTip_tipBody.domTip_noHeader&#8221; Though they do work in my style.css</p>
<p>Asking if you had any ideas on how to get the js to read the tippy elements, or if you can say this will not work (so I can give up tiring to get it to work)</p>
<p>Thanks<br />
Tim</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Hanson</title>
		<link>http://croberts.me/tippy-for-wordpress/comment-page-7/#comment-5616</link>
		<dc:creator>Tim Hanson</dc:creator>
		<pubDate>Thu, 29 Mar 2012 14:01:14 +0000</pubDate>
		<guid isPermaLink="false">http://croberts.me/?page_id=45#comment-5616</guid>
		<description>Chris, is it possible to style the background color of a individual tippy, as in:
[tippy title=&quot;My Groups&quot; header=&quot;off&quot; background=&quot;red&quot;]

The above does not work, hoping there is a method to do this.

Thanks
Tim</description>
		<content:encoded><![CDATA[<p>Chris, is it possible to style the background color of a individual tippy, as in:<br />
[tippy title="My Groups" header="off" background="red"]</p>
<p>The above does not work, hoping there is a method to do this.</p>
<p>Thanks<br />
Tim</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Hanson</title>
		<link>http://croberts.me/tippy-for-wordpress/comment-page-7/#comment-5595</link>
		<dc:creator>Tim Hanson</dc:creator>
		<pubDate>Thu, 29 Mar 2012 03:13:11 +0000</pubDate>
		<guid isPermaLink="false">http://croberts.me/?page_id=45#comment-5595</guid>
		<description>Chris, 
I just used the new tippy w/shortcode, works great! had to play a little with firebug to get the css but so far love it.

THANK YOU
Tim</description>
		<content:encoded><![CDATA[<p>Chris,<br />
I just used the new tippy w/shortcode, works great! had to play a little with firebug to get the css but so far love it.</p>
<p>THANK YOU<br />
Tim</p>
]]></content:encoded>
	</item>
</channel>
</rss>

