<?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: Sexy ToolTips</title>
	<atom:link href="http://www.coders.me//lang/en/web-html-js-css/javascript/sexy-tooltips/feed" rel="self" type="application/rss+xml" />
	<link>http://www.coders.me//lang/en/web-html-js-css/javascript/sexy-tooltips</link>
	<description>Blog de Informática y Programación</description>
	<lastBuildDate>Thu, 09 Sep 2010 12:47:35 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jean Hernández</title>
		<link>http://www.coders.me//lang/en/web-html-js-css/javascript/sexy-tooltips/comment-page-2#comment-7732</link>
		<dc:creator>Jean Hernández</dc:creator>
		<pubDate>Wed, 08 Sep 2010 02:46:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.coders.me/?p=431#comment-7732</guid>
		<description>Hola q tal!, muy buen plugin este!, en verdad muy buen trabajo.

Tengo una pregunta, como &lt;strong&gt;elimino&lt;/strong&gt; un tooltip previamente agregado, les explico, tengo un formulario dentro de un dialog, estoy trabajando la validación sin el plugin de validación, pues así lo quiero, la idea es q al validar los campos se crea un tooltip para cada campo que no es válido, pero quiero saber como eliminar el tooltip, ya que al cerrar el dialog y volver a abrirlo se quedan los tooltips (lo que tiene sentido).

Alguien sabe como?, intenté usando &lt;strong&gt;campo.tooltip.remove()&lt;/strong&gt;, pero no me funciona :S</description>
		<content:encoded><![CDATA[<p>Hola q tal!, muy buen plugin este!, en verdad muy buen trabajo.</p>
<p>Tengo una pregunta, como <strong>elimino</strong> un tooltip previamente agregado, les explico, tengo un formulario dentro de un dialog, estoy trabajando la validación sin el plugin de validación, pues así lo quiero, la idea es q al validar los campos se crea un tooltip para cada campo que no es válido, pero quiero saber como eliminar el tooltip, ya que al cerrar el dialog y volver a abrirlo se quedan los tooltips (lo que tiene sentido).</p>
<p>Alguien sabe como?, intenté usando <strong>campo.tooltip.remove()</strong>, pero no me funciona :S</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gobygoba</title>
		<link>http://www.coders.me//lang/en/web-html-js-css/javascript/sexy-tooltips/comment-page-2#comment-7646</link>
		<dc:creator>gobygoba</dc:creator>
		<pubDate>Wed, 25 Aug 2010 14:07:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.coders.me/?p=431#comment-7646</guid>
		<description>if you want used sexy-tooltips for all classic tooltip generated by the title attribut of html tags, you can used this code (for JQuery):

[js]
$(document).ready(function() {
   	$(&quot;*[title]&quot;).each(function(){
   		if($(this).attr(&quot;title&quot;)!=&quot;&quot;){
   			$(this).tooltip($(this).attr(&quot;title&quot;), {width: 200});
   		}
   	});
}); 
[/js]</description>
		<content:encoded><![CDATA[<p>if you want used sexy-tooltips for all classic tooltip generated by the title attribut of html tags, you can used this code (for JQuery):</p>
<pre class="brush: js;">
$(document).ready(function() {
   	$(&quot;*[title]&quot;).each(function(){
   		if($(this).attr(&quot;title&quot;)!=&quot;&quot;){
   			$(this).tooltip($(this).attr(&quot;title&quot;), {width: 200});
   		}
   	});
});
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: gobygoba</title>
		<link>http://www.coders.me//lang/en/web-html-js-css/javascript/sexy-tooltips/comment-page-2#comment-7645</link>
		<dc:creator>gobygoba</dc:creator>
		<pubDate>Wed, 25 Aug 2010 14:02:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.coders.me/?p=431#comment-7645</guid>
		<description>I have find a solution. I have modify the function &quot;show&quot; of sexy-tooltips :
[js]
    this.tooltip.animate({
          opacity : 0,
          top     : this.pos.top - 10
        }, $.extend({}, {duration:500}, {
          complete: $.bind(this, function() {
        	  this.tooltip.animate({
                  opacity : 1,
                  top     : this.pos.top - 10
                }, $.extend({}, this.options, {
                  complete: $.bind(this, function() {
                    this.tooltip.css({ opacity: &#039;&#039; }); // bug de jQuery, en IE deja vivo el opacity aunque sea = 1
                                                       // En mootools obvio no pasa esto.
                    this.fireevents(1)
                  })
                }));
          })
        }));
[/js]

You can modify the delay time before showing tooltips with a modification of this part of code : &quot;{duration:500}&quot;</description>
		<content:encoded><![CDATA[<p>I have find a solution. I have modify the function &#8220;show&#8221; of sexy-tooltips :</p>
<pre class="brush: js;">
    this.tooltip.animate({
          opacity : 0,
          top     : this.pos.top - 10
        }, $.extend({}, {duration:500}, {
          complete: $.bind(this, function() {
        	  this.tooltip.animate({
                  opacity : 1,
                  top     : this.pos.top - 10
                }, $.extend({}, this.options, {
                  complete: $.bind(this, function() {
                    this.tooltip.css({ opacity: '' }); // bug de jQuery, en IE deja vivo el opacity aunque sea = 1
                                                       // En mootools obvio no pasa esto.
                    this.fireevents(1)
                  })
                }));
          })
        }));
</pre>
<p>You can modify the delay time before showing tooltips with a modification of this part of code : &#8220;{duration:500}&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gobygoba</title>
		<link>http://www.coders.me//lang/en/web-html-js-css/javascript/sexy-tooltips/comment-page-2#comment-7642</link>
		<dc:creator>gobygoba</dc:creator>
		<pubDate>Wed, 25 Aug 2010 07:53:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.coders.me/?p=431#comment-7642</guid>
		<description>PS : I used the last version of JQuery 1.4.2</description>
		<content:encoded><![CDATA[<p>PS : I used the last version of JQuery 1.4.2</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gobygoba</title>
		<link>http://www.coders.me//lang/en/web-html-js-css/javascript/sexy-tooltips/comment-page-2#comment-7635</link>
		<dc:creator>gobygoba</dc:creator>
		<pubDate>Tue, 24 Aug 2010 17:23:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.coders.me/?p=431#comment-7635</guid>
		<description>hi,

I try to put a delay before the sexy-tooltip opening. (Like a standard tooltip show in a Browser with the title attribut.)
I think it&#039;s maybe a good future option of sexy-tooltips, you don&#039;t think ? :)

I have add a delay &quot;$(this).delay(1000, function(){...&quot; of 1 second in the &quot;show&quot; fonction of sexy-tooltips, but it does&#039;nt work !
Can you help me please ?

[js]this.tooltip.stop();
        $(this).delay(1000, function(){
	        this.tooltip.animate({
	          opacity : 1,
	          top     : this.pos.top - 10
	        }, $.extend({}, this.options, {
	          complete: $.bind(this, function() {
	            this.tooltip.css({ opacity: &#039;&#039; }); // bug de jQuery, en IE deja vivo el opacity aunque sea = 1
	                                               // En mootools obvio no pasa esto.
	            this.fireevents(1)
	          })
	        }));
        });[/js]

Thanks.</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>I try to put a delay before the sexy-tooltip opening. (Like a standard tooltip show in a Browser with the title attribut.)<br />
I think it&#8217;s maybe a good future option of sexy-tooltips, you don&#8217;t think ? <img src='http://www.coders.me/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I have add a delay &#8220;$(this).delay(1000, function(){&#8230;&#8221; of 1 second in the &#8220;show&#8221; fonction of sexy-tooltips, but it does&#8217;nt work !<br />
Can you help me please ?</p>
<pre class="brush: js;">this.tooltip.stop();
        $(this).delay(1000, function(){
	        this.tooltip.animate({
	          opacity : 1,
	          top     : this.pos.top - 10
	        }, $.extend({}, this.options, {
	          complete: $.bind(this, function() {
	            this.tooltip.css({ opacity: '' }); // bug de jQuery, en IE deja vivo el opacity aunque sea = 1
	                                               // En mootools obvio no pasa esto.
	            this.fireevents(1)
	          })
	        }));
        });</pre>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MiguelMich</title>
		<link>http://www.coders.me//lang/en/web-html-js-css/javascript/sexy-tooltips/comment-page-2#comment-7618</link>
		<dc:creator>MiguelMich</dc:creator>
		<pubDate>Mon, 23 Aug 2010 01:36:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.coders.me/?p=431#comment-7618</guid>
		<description>olvidé decir como se llama la función:

[js]    $(&#039;.tooltip&#039;).tooltip (&#039;contenido&#039;, {
	  over: 		true,
    });[/js]</description>
		<content:encoded><![CDATA[<p>olvidé decir como se llama la función:</p>
<pre class="brush: js;">    $('.tooltip').tooltip ('contenido', {
	  over: 		true,
    });</pre>
]]></content:encoded>
	</item>
</channel>
</rss>
