<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Chica Blogger &#187; jQuery</title>
	<atom:link href="http://chicablogger.com/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://chicablogger.com</link>
	<description>Recursos para Blogger y WordPress</description>
	<lastBuildDate>Tue, 07 Feb 2012 06:09:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Incorporar jQuery TipTip en Blogger</title>
		<link>http://chicablogger.com/incorporar-jquery-tiptip-en-blogger/</link>
		<comments>http://chicablogger.com/incorporar-jquery-tiptip-en-blogger/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 05:40:18 +0000</pubDate>
		<dc:creator>Claudia</dc:creator>
				<category><![CDATA[Blogger]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[TipTip]]></category>
		<category><![CDATA[tooltip]]></category>

		<guid isPermaLink="false">http://chicablogger.com/?p=4891</guid>
		<description><![CDATA[En Blogger puedes añadir tooltips con jQuery TipTip de manera similar a la incorporación en WordPress: 1. Asegúrate de tener cargado jQuery en tu blog Si ya lo tienes, no lo cargues de nuevo. Si no, puedes incluirlo pegando el siguiente código en tu plantilla desde Diseño/Edición de HTML, antes de &#60;/head&#62;: 1 &#60;script src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.min.js' [...]

<h3>Posts relacionados</h3><ul><li><a href='http://chicablogger.com/incorporar-jquery-tiptip-en-wordpress/' rel='bookmark' title='Permanent Link: Incorporar jQuery TipTip en WordPress'>Incorporar jQuery TipTip en WordPress</a></li><li><a href='http://chicablogger.com/menu-desplegable-con-jquery-superfish-en-blogger/' rel='bookmark' title='Permanent Link: Menú desplegable con jQuery Superfish en Blogger'>Menú desplegable con jQuery Superfish en Blogger</a></li><li><a href='http://chicablogger.com/como-anadir-paginacion-en-wordpress-sin-plugin/' rel='bookmark' title='Permanent Link: Cómo añadir paginación en WordPress sin plugin'>Cómo añadir paginación en WordPress sin plugin</a></li></ul>]]></description>
			<content:encoded><![CDATA[<p><img style="background: none; padding 0"; src="http://chicablogger.com/wp-content/uploads/2011/09/jquery-titptip-wordpress.png" alt="jquery titptip wordpress" title="jquery titptip wordpress" width="560" height="158" class="aligncenter size-full wp-image-4866" /></p>
<p>En <strong>Blogger</strong> puedes añadir <strong>tooltips con jQuery TipTip</strong> de manera similar a la incorporación en<a href="http://chicablogger.com/incorporar-jquery-tiptip-en-wordpress/" title="TipTip WordPress"><strong> WordPress</strong></a>:</p>
<h3><strong>1. Asegúrate de tener cargado jQuery en tu blog</strong></h3>
<p>Si ya lo tienes, no lo cargues de nuevo. Si no, puedes incluirlo pegando el siguiente código en tu plantilla desde <strong>Diseño/Edición de HTML</strong>, antes de <strong>&lt;/head&gt;</strong>:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="language" style="font-family:monospace;">&lt;script src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.min.js' type='text/javascript'/&gt;</pre></td></tr></table></div>

<p>De esta manera, se estará cargando la última versión (minificada) de jQuery desde Google. </p>
<h3><strong>2. Agrega TipTip directamente en tu plantilla</strong></h3>
<p>Antes de <strong>&lt;/head&gt;</strong>, pega los siguientes códigos:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><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
</pre></td><td class="code"><pre class="language" style="font-family:monospace;">&lt;script type='text/javascript'&gt;
//&lt;![CDATA[
&nbsp;
 /*
 * TipTip
 * Copyright 2010 Drew Wilson
 * www.drewwilson.com
 * code.drewwilson.com/entry/tiptip-jquery-plugin
 *
 * Version 1.3   -   Updated: Mar. 23, 2010
 *
 * This Plug-In will create a custom tooltip to replace the default
 * browser tooltip. It is extremely lightweight and very smart in
 * that it detects the edges of the browser window and will make sure
 * the tooltip stays within the current window size. As a result the
 * tooltip will adjust itself to be displayed above, below, to the left 
 * or to the right depending on what is necessary to stay within the
 * browser window. It is completely customizable as well via CSS.
 *
 * This TipTip jQuery plug-in is dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */
(function($){$.fn.tipTip=function(options){var defaults={activation:&quot;hover&quot;,keepAlive:false,maxWidth:&quot;200px&quot;,edgeOffset:3,defaultPosition:&quot;bottom&quot;,delay:400,fadeIn:200,fadeOut:200,attribute:&quot;title&quot;,content:false,enter:function(){},exit:function(){}};var opts=$.extend(defaults,options);if($(&quot;#tiptip_holder&quot;).length&lt;=0){var tiptip_holder=$('&lt;div id=&quot;tiptip_holder&quot; style=&quot;max-width:'+opts.maxWidth+';&quot;&gt;&lt;/div&gt;');var tiptip_content=$('&lt;div id=&quot;tiptip_content&quot;&gt;&lt;/div&gt;');var tiptip_arrow=$('&lt;div id=&quot;tiptip_arrow&quot;&gt;&lt;/div&gt;');$(&quot;body&quot;).append(tiptip_holder.html(tiptip_content).prepend(tiptip_arrow.html('&lt;div id=&quot;tiptip_arrow_inner&quot;&gt;&lt;/div&gt;')))}else{var tiptip_holder=$(&quot;#tiptip_holder&quot;);var tiptip_content=$(&quot;#tiptip_content&quot;);var tiptip_arrow=$(&quot;#tiptip_arrow&quot;)}return this.each(function(){var org_elem=$(this);if(opts.content){var org_title=opts.content}else{var org_title=org_elem.attr(opts.attribute)}if(org_title!=&quot;&quot;){if(!opts.content){org_elem.removeAttr(opts.attribute)}var timeout=false;if(opts.activation==&quot;hover&quot;){org_elem.hover(function(){active_tiptip()},function(){if(!opts.keepAlive){deactive_tiptip()}});if(opts.keepAlive){tiptip_holder.hover(function(){},function(){deactive_tiptip()})}}else if(opts.activation==&quot;focus&quot;){org_elem.focus(function(){active_tiptip()}).blur(function(){deactive_tiptip()})}else if(opts.activation==&quot;click&quot;){org_elem.click(function(){active_tiptip();return false}).hover(function(){},function(){if(!opts.keepAlive){deactive_tiptip()}});if(opts.keepAlive){tiptip_holder.hover(function(){},function(){deactive_tiptip()})}}function active_tiptip(){opts.enter.call(this);tiptip_content.html(org_title);tiptip_holder.hide().removeAttr(&quot;class&quot;).css(&quot;margin&quot;,&quot;0&quot;);tiptip_arrow.removeAttr(&quot;style&quot;);var top=parseInt(org_elem.offset()['top']);var left=parseInt(org_elem.offset()['left']);var org_width=parseInt(org_elem.outerWidth());var org_height=parseInt(org_elem.outerHeight());var tip_w=tiptip_holder.outerWidth();var tip_h=tiptip_holder.outerHeight();var w_compare=Math.round((org_width-tip_w)/2);var h_compare=Math.round((org_height-tip_h)/2);var marg_left=Math.round(left+w_compare);var marg_top=Math.round(top+org_height+opts.edgeOffset);var t_class=&quot;&quot;;var arrow_top=&quot;&quot;;var arrow_left=Math.round(tip_w-12)/2;if(opts.defaultPosition==&quot;bottom&quot;){t_class=&quot;_bottom&quot;}else if(opts.defaultPosition==&quot;top&quot;){t_class=&quot;_top&quot;}else if(opts.defaultPosition==&quot;left&quot;){t_class=&quot;_left&quot;}else if(opts.defaultPosition==&quot;right&quot;){t_class=&quot;_right&quot;}var right_compare=(w_compare+left)&lt;parseInt($(window).scrollLeft());var left_compare=(tip_w+left)&gt;parseInt($(window).width());if((right_compare&amp;&amp;w_compare&lt;0)||(t_class==&quot;_right&quot;&amp;&amp;!left_compare)||(t_class==&quot;_left&quot;&amp;&amp;left&lt;(tip_w+opts.edgeOffset+5))){t_class=&quot;_right&quot;;arrow_top=Math.round(tip_h-13)/2;arrow_left=-12;marg_left=Math.round(left+org_width+opts.edgeOffset);marg_top=Math.round(top+h_compare)}else if((left_compare&amp;&amp;w_compare&lt;0)||(t_class==&quot;_left&quot;&amp;&amp;!right_compare)){t_class=&quot;_left&quot;;arrow_top=Math.round(tip_h-13)/2;arrow_left=Math.round(tip_w);marg_left=Math.round(left-(tip_w+opts.edgeOffset+5));marg_top=Math.round(top+h_compare)}var top_compare=(top+org_height+opts.edgeOffset+tip_h+8)&gt;parseInt($(window).height()+$(window).scrollTop());var bottom_compare=((top+org_height)-(opts.edgeOffset+tip_h+8))&lt;0;if(top_compare||(t_class==&quot;_bottom&quot;&amp;&amp;top_compare)||(t_class==&quot;_top&quot;&amp;&amp;!bottom_compare)){if(t_class==&quot;_top&quot;||t_class==&quot;_bottom&quot;){t_class=&quot;_top&quot;}else{t_class=t_class+&quot;_top&quot;}arrow_top=tip_h;marg_top=Math.round(top-(tip_h+5+opts.edgeOffset))}else if(bottom_compare|(t_class==&quot;_top&quot;&amp;&amp;bottom_compare)||(t_class==&quot;_bottom&quot;&amp;&amp;!top_compare)){if(t_class==&quot;_top&quot;||t_class==&quot;_bottom&quot;){t_class=&quot;_bottom&quot;}else{t_class=t_class+&quot;_bottom&quot;}arrow_top=-12;marg_top=Math.round(top+org_height+opts.edgeOffset)}if(t_class==&quot;_right_top&quot;||t_class==&quot;_left_top&quot;){marg_top=marg_top+5}else if(t_class==&quot;_right_bottom&quot;||t_class==&quot;_left_bottom&quot;){marg_top=marg_top-5}if(t_class==&quot;_left_top&quot;||t_class==&quot;_left_bottom&quot;){marg_left=marg_left+5}tiptip_arrow.css({&quot;margin-left&quot;:arrow_left+&quot;px&quot;,&quot;margin-top&quot;:arrow_top+&quot;px&quot;});tiptip_holder.css({&quot;margin-left&quot;:marg_left+&quot;px&quot;,&quot;margin-top&quot;:marg_top+&quot;px&quot;}).attr(&quot;class&quot;,&quot;tip&quot;+t_class);if(timeout){clearTimeout(timeout)}timeout=setTimeout(function(){tiptip_holder.stop(true,true).fadeIn(opts.fadeIn)},opts.delay)}function deactive_tiptip(){opts.exit.call(this);if(timeout){clearTimeout(timeout)}tiptip_holder.fadeOut(opts.fadeOut)}}})}})(jQuery);
&nbsp;
//]]&gt;
&lt;/script&gt;
&nbsp;
&lt;script type='text/javascript'&gt;
//&lt;![CDATA[
$(function(){
$(&quot;.tooltip&quot;).tipTip();
});
//]]&gt;
&lt;/script&gt;</pre></td></tr></table></div>

<p>Ahora, antes de <strong>]]&gt;&lt;/b:skin&gt;</strong>, copia el siguiente código <strong>CSS</strong>:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><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
114
115
</pre></td><td class="code"><pre class="language" style="font-family:monospace;">/* TipTip CSS - Version 1.2 */
&nbsp;
#tiptip_holder {
display: none;
position: absolute;
top: 0;
left: 0;
z-index: 99999;
}
&nbsp;
#tiptip_holder.tip_top {
padding-bottom: 5px;
}
&nbsp;
#tiptip_holder.tip_bottom {
padding-top: 5px;
}
&nbsp;
#tiptip_holder.tip_right {
padding-left: 5px;
}
&nbsp;
#tiptip_holder.tip_left {
padding-right: 5px;
}
&nbsp;
#tiptip_content {
font-family: Arial, sans-serif;
font-size: 11px;
color: #fff;
text-shadow: 0 0 2px #000;
padding: 4px 8px;
border: 1px solid rgba(255,255,255,0.25);
background-color: rgb(25,25,25);
background-color: rgba(25,25,25,0.92);
*background-color: #000;
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#000));
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
box-shadow: 0 0 3px #555;
-webkit-box-shadow: 0 0 3px #555;
-moz-box-shadow: 0 0 3px #555;
}
&nbsp;
#tiptip_arrow, #tiptip_arrow_inner {
position: absolute;
border-color: transparent;
border-style: solid;
border-width: 6px;
height: 0;
width: 0;
}
&nbsp;
#tiptip_holder.tip_top #tiptip_arrow {
border-top-color: #fff;
border-top-color: rgba(255,255,255,0.35);
}
&nbsp;
#tiptip_holder.tip_bottom #tiptip_arrow {
border-bottom-color: #fff;
border-bottom-color: rgba(255,255,255,0.35);
}
&nbsp;
#tiptip_holder.tip_right #tiptip_arrow {
border-right-color: #fff;
border-right-color: rgba(255,255,255,0.35);
}
&nbsp;
#tiptip_holder.tip_left #tiptip_arrow {
border-left-color: #fff;
border-left-color: rgba(255,255,255,0.35);
}
&nbsp;
#tiptip_holder.tip_top #tiptip_arrow_inner {
margin-top: -7px;
margin-left: -6px;
border-top-color: rgb(25,25,25);
border-top-color: rgba(25,25,25,0.92);
}
&nbsp;
#tiptip_holder.tip_bottom #tiptip_arrow_inner {
margin-top: -5px;
margin-left: -6px;
border-bottom-color: rgb(25,25,25);
border-bottom-color: rgba(25,25,25,0.92);
}
&nbsp;
#tiptip_holder.tip_right #tiptip_arrow_inner {
margin-top: -6px;
margin-left: -5px;
border-right-color: rgb(25,25,25);
border-right-color: rgba(25,25,25,0.92);
}
&nbsp;
#tiptip_holder.tip_left #tiptip_arrow_inner {
margin-top: -6px;
margin-left: -7px;
border-left-color: rgb(25,25,25);
border-left-color: rgba(25,25,25,0.92);
}
&nbsp;
/* Webkit Hacks  */
@media screen and (-webkit-min-device-pixel-ratio:0) {	
	#tiptip_content {
		padding: 4px 8px 5px 8px;
		background-color: rgba(45,45,45,0.88);
	}
	#tiptip_holder.tip_bottom #tiptip_arrow_inner { 
		border-bottom-color: rgba(45,45,45,0.88);
	}
	#tiptip_holder.tip_top #tiptip_arrow_inner { 
		border-top-color: rgba(20,20,20,0.92);
	}
}</pre></td></tr></table></div>

<h3><strong>3. Haz que funcione</strong></h3>
<p>Tanto en tus entradas como en tu plantilla puedes incluir TipTip de forma manual usando el atributo “title” y la clase (class=”tooltip”) en tus enlaces, de la siguiente manera:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="language" style="font-family:monospace;">&lt;a href=&quot;http://chicablogger.com&quot; title=&quot;Recursos para Blogger y WordPress&quot; class=&quot;tooltip&quot;&gt;Chica Blogger&lt;/a&gt;</pre></td></tr></table></div>



<h3>Posts relacionados</h3><ul><li><a href='http://chicablogger.com/incorporar-jquery-tiptip-en-wordpress/' rel='bookmark' title='Permanent Link: Incorporar jQuery TipTip en WordPress'>Incorporar jQuery TipTip en WordPress</a></li><li><a href='http://chicablogger.com/menu-desplegable-con-jquery-superfish-en-blogger/' rel='bookmark' title='Permanent Link: Menú desplegable con jQuery Superfish en Blogger'>Menú desplegable con jQuery Superfish en Blogger</a></li><li><a href='http://chicablogger.com/como-anadir-paginacion-en-wordpress-sin-plugin/' rel='bookmark' title='Permanent Link: Cómo añadir paginación en WordPress sin plugin'>Cómo añadir paginación en WordPress sin plugin</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://chicablogger.com/incorporar-jquery-tiptip-en-blogger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Incorporar jQuery TipTip en WordPress</title>
		<link>http://chicablogger.com/incorporar-jquery-tiptip-en-wordpress/</link>
		<comments>http://chicablogger.com/incorporar-jquery-tiptip-en-wordpress/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 03:54:41 +0000</pubDate>
		<dc:creator>Claudia</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Tutoriales WordPress]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[TipTip]]></category>
		<category><![CDATA[tooltip]]></category>

		<guid isPermaLink="false">http://chicablogger.com/?p=4865</guid>
		<description><![CDATA[TipTip es un popular plugin jQuery de bajo peso desarrollado por Drew Wilson que permite añadir tooltips a tu blog sólo con CSS, y mediante el atributo &#8220;title&#8221;. La gracia que tienes es que no necesita imágenes, es fácil de incorporar y, como cualquier tooltip, además de verse bonito contribuye a la usabilidad web. Para [...]

<h3>Posts relacionados</h3><ul><li><a href='http://chicablogger.com/incorporar-jquery-tiptip-en-blogger/' rel='bookmark' title='Permanent Link: Incorporar jQuery TipTip en Blogger'>Incorporar jQuery TipTip en Blogger</a></li><li><a href='http://chicablogger.com/jquery-fonteffect-anade-afectos-al-texto-sin-imagenes/' rel='bookmark' title='Permanent Link: jQuery FontEffect: añade afectos al texto sin imágenes'>jQuery FontEffect: añade afectos al texto sin imágenes</a></li><li><a href='http://chicablogger.com/contactable-un-atractivo-plugin-jquery-para-formularios-de-contacto/' rel='bookmark' title='Permanent Link: Contactable: Un atractivo plugin jQuery para formularios de contacto'>Contactable: Un atractivo plugin jQuery para formularios de contacto</a></li></ul>]]></description>
			<content:encoded><![CDATA[<p><img style="background: none; padding 0"; src="http://chicablogger.com/wp-content/uploads/2011/09/jquery-titptip-wordpress.png" alt="jquery titptip wordpress" title="jquery titptip wordpress" width="560" height="158" class="aligncenter size-full wp-image-4866" /><br />
<strong>TipTip</strong> es un popular <strong>plugin jQuery</strong> de bajo peso desarrollado por <em>Drew Wilson</em> que permite añadir <strong>tooltips</strong> a tu blog sólo con CSS, y mediante el atributo &#8220;title&#8221;. La gracia que tienes es que no necesita imágenes, es fácil de incorporar y, como cualquier tooltip, además de verse bonito contribuye a la <strong>usabilidad web</strong>.</p>
<p>Para incorporarlo en tu blog de WordPress, sigue los siguientes pasos:</p>
<h3><strong>1. Asegúrate de tener cargado jQuery en tu blog</strong></h3>
<p>Si ya lo tienes, no lo cargues de nuevo. Si no, puedes incluirlo pegando el siguiente código en tu <strong>header.php</strong>, antes de <strong>&lt;/head&gt;</strong>:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="language" style="font-family:monospace;">&lt;?php wp_enqueue_script(&quot;jquery&quot;); ?&gt;
&lt;?php wp_head(); ?&gt;</pre></td></tr></table></div>

<h3><strong>2. Descarga el plugin desde la web del autor</strong></h3>
<p>Ve a <a href="http://code.drewwilson.com/entry/tiptip-jquery-plugin" title="Drew Wilson Code"><strong>Drew Wilson Code</strong></a> y descarga el paquete de <strong>jQuery TipTip</strong>. Descomprime el paquete y sube el archivo &#8220;<strong>jquery.tipTip.js</strong>&#8221; vía FTP en la carpeta &#8220;<strong>js</strong>&#8221; de tu theme (si no existe, créala). El contenido de <strong>tipTip.css</strong> puedes pegarlo al final de tu style.css.</p>
<h3><strong>3.Haz el llamado desde tu header.php</strong></h3>
<p>Justo bajo <strong>&lt;?php wp_head(); ?&gt;</strong>, pega los siguientes códigos:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="language" style="font-family:monospace;">&lt;script src=&quot;&lt;?php bloginfo('template_directory'); ?&gt;/js/jquery.tipTip.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;</pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="language" style="font-family:monospace;">&lt;script type=&quot;text/javascript&quot;&gt;
jQuery(function(){
jQuery(&quot;.tooltip&quot;).tipTip();
});
&lt;/script&gt;</pre></td></tr></table></div>

<h3><strong>4. Añade TipTip de forma manual a tus enlaces</strong></h3>
<p>Puedes seguir el siguiente ejemplo:</p>

<div class="wp_syntax"><div class="code"><pre class="language" style="font-family:monospace;">&lt;a href=&quot;http://chicablogger.com&quot; title=&quot;Recursos para Blogger y WordPress&quot; class=&quot;tooltip&quot;&gt;Chica Blogger&lt;/a&gt;</pre></div></div>

<p>Tanto el atributo &#8220;title&#8221; como la clase (class=&#8221;tooltip&#8221;) son necesarios y obligatorios para que funcione el plugin. Debes añadirlos donde quieras que se muestre el tooltip.</p>
<h3><strong>5. Añade TipTip de forma automática a tus enlaces</strong></h3>
<p>Habrás notado que <strong>WordPress</strong> ha añadido títulos de forma automática a algunas secciones importantes. Incorporando una variable, se puede lograr que los tooltips se muestren de forma automática en cada lugar donde se use el atributo &#8220;title&#8221;:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="language" style="font-family:monospace;">&lt;script type=&quot;text/javascript&quot;&gt;
jQuery(function(){
jQuery(&quot;.tooltip&quot;).tipTip();
var title = jQuery(&quot;.tipTip&quot;).attr(&quot;title&quot;);
jQuery(&quot;a&quot;).tipTip(title);
});
&lt;/script&gt;</pre></td></tr></table></div>

<p>Habrás notado lo sencillo que es añadir TipTip a tu WordPress. No hay más cambios que hacer, a menos que quieras hacer algunos cambios en el CSS.</p>


<h3>Posts relacionados</h3><ul><li><a href='http://chicablogger.com/incorporar-jquery-tiptip-en-blogger/' rel='bookmark' title='Permanent Link: Incorporar jQuery TipTip en Blogger'>Incorporar jQuery TipTip en Blogger</a></li><li><a href='http://chicablogger.com/jquery-fonteffect-anade-afectos-al-texto-sin-imagenes/' rel='bookmark' title='Permanent Link: jQuery FontEffect: añade afectos al texto sin imágenes'>jQuery FontEffect: añade afectos al texto sin imágenes</a></li><li><a href='http://chicablogger.com/contactable-un-atractivo-plugin-jquery-para-formularios-de-contacto/' rel='bookmark' title='Permanent Link: Contactable: Un atractivo plugin jQuery para formularios de contacto'>Contactable: Un atractivo plugin jQuery para formularios de contacto</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://chicablogger.com/incorporar-jquery-tiptip-en-wordpress/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>jQuery FontEffect: añade afectos al texto sin imágenes</title>
		<link>http://chicablogger.com/jquery-fonteffect-anade-afectos-al-texto-sin-imagenes/</link>
		<comments>http://chicablogger.com/jquery-fonteffect-anade-afectos-al-texto-sin-imagenes/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 02:47:42 +0000</pubDate>
		<dc:creator>Claudia</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://chicablogger.com/?p=2983</guid>
		<description><![CDATA[FontEffect es un plugin jQuery que añade efectos a textos delimitados con HTML, sin imágenes, y sin necesidad de usar CSS. En su versión 1.0 (que pesa sólo 7kb) permite añadir 4 efectos distintos: borde (outline), sombra, gradiente y reflejo (mirror). Puedes añadirlo en tres pasos: 1) Cargas la librería y el plugin (tomando en [...]

<h3>Posts relacionados</h3><ul><li><a href='http://chicablogger.com/incorporar-jquery-tiptip-en-wordpress/' rel='bookmark' title='Permanent Link: Incorporar jQuery TipTip en WordPress'>Incorporar jQuery TipTip en WordPress</a></li><li><a href='http://chicablogger.com/contactable-un-atractivo-plugin-jquery-para-formularios-de-contacto/' rel='bookmark' title='Permanent Link: Contactable: Un atractivo plugin jQuery para formularios de contacto'>Contactable: Un atractivo plugin jQuery para formularios de contacto</a></li><li><a href='http://chicablogger.com/incorporar-jquery-tiptip-en-blogger/' rel='bookmark' title='Permanent Link: Incorporar jQuery TipTip en Blogger'>Incorporar jQuery TipTip en Blogger</a></li></ul>]]></description>
			<content:encoded><![CDATA[<p>FontEffect es un <strong>plugin jQuery</strong> que añade efectos a textos delimitados con HTML, sin imágenes, y sin necesidad de usar CSS. En su versión 1.0 (que pesa sólo 7kb) permite añadir 4 efectos distintos: borde (outline), sombra, gradiente y reflejo (mirror).</p>
<p><img src="http://chicablogger.com/wp-content/uploads/2009/08/jqueryfonteffect.png" alt="jqueryfonteffect" title="jqueryfonteffect" width="319" height="122" class="aligncenter size-full wp-image-2999" /></p>
<p>Puedes añadirlo en tres pasos:</p>
<p>1) Cargas la librería y el plugin (tomando en cuenta que requiere jQuery 1.3.2):</p>

<div class="wp_syntax"><div class="code"><pre class="language" style="font-family:monospace;">&lt;script type=&quot;text/javascript&quot; src=&quot;jquery-1.3.2.js&quot;&gt;&lt;/script&gt; &lt;script type=&quot;text/javascript&quot; src=&quot;jquery-FontEffect-1.0.0.min.js&quot;&gt;&lt;/script&gt;</pre></div></div>

<p>2) El CSS:</p>

<div class="wp_syntax"><div class="code"><pre class="language" style="font-family:monospace;">#ejemplo{ font-family: Georgia,'Times New Roman', serif; font-size:3.0em; color:#ff0080; font-weight:bold; margin-bottom:10px;}</pre></div></div>

<p>3) HTML y efectos:</p>

<div class="wp_syntax"><div class="code"><pre class="language" style="font-family:monospace;">&lt;div id=&quot;ejemplo&quot;&gt;ChicaBlogger&lt;/div&gt;
&nbsp;
&lt;script type=&quot;text/javascript&quot;&gt;
$(&amp;quot;#ejemplo&amp;quot;).FontEffect({shadow:true});
&lt;/script&gt;</pre></div></div>

<p>Puedes combinar los efectos como quieras, y ver ejemplos en la página de <a href="http://www.iofo.it/jquery/fonteffect/" rel="nofollow"><strong>Alejandro Uliana</strong></a>.<br />
Es un plugin curioso, ideal para encabezados generados dinámicamente (ejemplo, el título de los posts). Lo mejor, es que funciona en la mayoría de los navegadores conocidos, incluyendo el favorito de todos: IE6.</p>
<p><strong>Vía </strong>| <strong><a href="http://www.queness.com/post/545/10-handycool-jquery-plugins" rel="nofollow">Queness</a></strong></p>


<h3>Posts relacionados</h3><ul><li><a href='http://chicablogger.com/incorporar-jquery-tiptip-en-wordpress/' rel='bookmark' title='Permanent Link: Incorporar jQuery TipTip en WordPress'>Incorporar jQuery TipTip en WordPress</a></li><li><a href='http://chicablogger.com/contactable-un-atractivo-plugin-jquery-para-formularios-de-contacto/' rel='bookmark' title='Permanent Link: Contactable: Un atractivo plugin jQuery para formularios de contacto'>Contactable: Un atractivo plugin jQuery para formularios de contacto</a></li><li><a href='http://chicablogger.com/incorporar-jquery-tiptip-en-blogger/' rel='bookmark' title='Permanent Link: Incorporar jQuery TipTip en Blogger'>Incorporar jQuery TipTip en Blogger</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://chicablogger.com/jquery-fonteffect-anade-afectos-al-texto-sin-imagenes/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: chicablogger.com @ 2012-02-09 07:13:10 -->
