<?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>Javascript y PHP: recursos y explicaciones - por IUGO</title>
	<atom:link href="http://www.iugo.com.uy/blog/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.iugo.com.uy/blog</link>
	<description>PHP y JavaScript claro y sencillo, por IUGO software &#38; design studio</description>
	<lastBuildDate>Thu, 17 Nov 2011 20:49:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>IUGO estrena web!</title>
		<link>http://www.iugo.com.uy/blog/index.php/estrenamos-nueva-web/</link>
		<comments>http://www.iugo.com.uy/blog/index.php/estrenamos-nueva-web/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 20:49:04 +0000</pubDate>
		<dc:creator>alfonso</dc:creator>
				<category><![CDATA[Iugo]]></category>

		<guid isPermaLink="false">http://www.iugo.com.uy/blog/?p=392</guid>
		<description><![CDATA[Re-diseñamos por completo nuestra web, esperamos sus comentarios! www.iugo.com.uy]]></description>
			<content:encoded><![CDATA[<p>Re-diseñamos por completo nuestra web, esperamos sus comentarios!</p>
<h3><a href="http://iugo.com.uy">www.iugo.com.uy</a></h3>
]]></content:encoded>
			<wfw:commentRss>http://www.iugo.com.uy/blog/index.php/estrenamos-nueva-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Precargar imágenes con jQuery</title>
		<link>http://www.iugo.com.uy/blog/index.php/precargar-imagenes-con-jquery/</link>
		<comments>http://www.iugo.com.uy/blog/index.php/precargar-imagenes-con-jquery/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 20:49:10 +0000</pubDate>
		<dc:creator>gonzalo</dc:creator>
				<category><![CDATA[Iugo]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.iugo.com.uy/blog/?p=268</guid>
		<description><![CDATA[Muchas veces nuestros sitios web tienen imágenes que necesitamos precargar, un claro ejemplo en el que resulta útil hacer esto es cuando nuestro sitio tiene efectos de &#8220;rollover&#8221; sobre las imágenes. Resulta bastante molesto cuando pasamos el mouse sobre una imágen y ésta queda en blanco hasta que termina de descargarse la imágen que debería [...]]]></description>
			<content:encoded><![CDATA[<p>Muchas veces nuestros sitios web tienen imágenes que necesitamos precargar, un claro ejemplo en el que resulta útil hacer esto es cuando nuestro sitio tiene efectos de &#8220;rollover&#8221; sobre las imágenes. Resulta bastante molesto cuando pasamos el mouse sobre una imágen y ésta queda en blanco hasta que termina de descargarse la imágen que debería verse al hacer rollover. Y cuando hablamos de rollover no sólo nos referimos a efectos realizados utilizando funciones en javascript, tambien se incluye, por ejemplo, cuando cambiamos el &#8220;background&#8221; de algo, en su estado hover</p>
<p><span id="more-268"></span></p>
<p><code>a.linkConRollover:hover {<br />
background-image: url(imagen-over.jpg);<br />
}</code></p>
<p>En este caso, sería bueno precargar la imagen &#8220;imagen-over.jpg&#8221; para que al pasar el mouse por primera vez sobre un  hipervínculo con estilo &#8220;linkConRollover&#8221; no debamos esperar a que se cargue dicha imagen.  Para eso podemos usar una función muy muy muy sencilla:<br />
<code><br />
jQuery.precargarImg = function() {<br />
for(var i=0; i<br />
jQuery("<img alt="" />").attr("src", arguments[i]);<br />
}</code></p>
<p>&nbsp;</p>
<p><strong>El código completo a incluir en nuestra etiqueta head sería:</strong></p>
<p><code><br />
&lt;script src="jquery.min.js" language="javascript"&gt;&lt;/script&gt;<br />
&lt;script&gt;<br />
jQuery.preloadImages = function() {<br />
for(var i = 0; i&lt;arguments.length; i++){<br />
jQuery("&lt;img&gt;").attr("src", arguments[i]);<br />
}<br />
$.preloadImages("pics/pic1.jpg","pics/pic2.jpg","pics/pic3.jpg");<br />
&lt;/script&gt;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iugo.com.uy/blog/index.php/precargar-imagenes-con-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Nos renovamos!</title>
		<link>http://www.iugo.com.uy/blog/index.php/nos-renovamos/</link>
		<comments>http://www.iugo.com.uy/blog/index.php/nos-renovamos/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 20:47:16 +0000</pubDate>
		<dc:creator>alfonso</dc:creator>
				<category><![CDATA[Iugo]]></category>

		<guid isPermaLink="false">http://www.iugo.com.uy/blog/?p=382</guid>
		<description><![CDATA[Para estar a tono con la próxima versión de la web de IUGO, renovamos la imagen del blog. Espramos que sea más cómodo para leer. Dejen su opinión!]]></description>
			<content:encoded><![CDATA[<p>Para estar a tono con la próxima versión de la web de <a href="http://www.iugo.com.uy">IUGO</a>, renovamos la imagen del blog. Espramos que sea más cómodo para leer. Dejen su opinión!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iugo.com.uy/blog/index.php/nos-renovamos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ventanas modales con jQuery, de manera simple</title>
		<link>http://www.iugo.com.uy/blog/index.php/ventanas-modales-con-jquery-de-manera-simple/</link>
		<comments>http://www.iugo.com.uy/blog/index.php/ventanas-modales-con-jquery-de-manera-simple/#comments</comments>
		<pubDate>Mon, 07 Feb 2011 00:20:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Iugo]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Programación]]></category>

		<guid isPermaLink="false">http://www.iugo.com.uy/blog/?p=375</guid>
		<description><![CDATA[Reveal es un plugin para jQuery que permite implementar ventanas modales elegantes de manera muy sencilla. Las ventanas modales pueden ser customizadas si se desea, aunque el diseño por defecto es muy bueno. El plugin es compatible con todos los navegadores modernos, y muy liviano (1.75 KB).]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><a href="http://www.iugo.com.uy/blog/wp-content/uploads/2011/02/modal.png"><img class="size-full wp-image-376 aligncenter" style="margin-top: 5px; margin-bottom: 5px;" title="modal" src="http://www.iugo.com.uy/blog/wp-content/uploads/2011/02/modal.png" alt="" width="400" height="166" /></a></p>
<p><a href="http://www.zurb.com/playground/reveal-modal-plugin"> Reveal</a> es un plugin para jQuery que permite implementar ventanas modales elegantes de manera muy sencilla.</p>
<p style="text-align: left;">Las ventanas modales pueden ser customizadas si se desea, aunque el diseño por defecto es muy bueno. El plugin es compatible con todos los navegadores modernos, y muy liviano (1.75 KB).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iugo.com.uy/blog/index.php/ventanas-modales-con-jquery-de-manera-simple/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Filtrar resultados en jQuery</title>
		<link>http://www.iugo.com.uy/blog/index.php/filtrar-resultados-en-jquery/</link>
		<comments>http://www.iugo.com.uy/blog/index.php/filtrar-resultados-en-jquery/#comments</comments>
		<pubDate>Tue, 01 Feb 2011 18:55:46 +0000</pubDate>
		<dc:creator>alfonso</dc:creator>
				<category><![CDATA[Iugo]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.iugo.com.uy/blog/?p=362</guid>
		<description><![CDATA[Hoy les presentamos un script realmente útil a la hora de darle al usuario la posibilidad de filtrar resultados en una lista... El código tras el salto. El código: El siguiente código funciona buscando el texto vayamos generando, en cada elemento de la lista, y de esa manera elimina los elementos que no coincidan. Clic para [...]]]></description>
			<content:encoded><![CDATA[<p>Hoy les presentamos un script realmente útil a la hora de darle al usuario la posibilidad de filtrar resultados en una lista...</p>
<p><img class="alignnone" src="http://papermashup.com/wp-content/uploads/2011/01/search.png" alt="" width="200" height="200" /></p>
<p><strong>El código tras el salto.</strong></p>
<p><span id="more-362"></span></p>
<h3><strong>El código:</strong></h3>
<p>El siguiente código funciona buscando el texto vayamos generando, en cada elemento de la lista, y de esa manera elimina los elementos que no coincidan.</p>
<div class="igBar"><span id="ljavascript-3"><a href="#" onclick="javascript:showPlainTxt('javascript-3'); return false;">Clic para ver Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">JAVASCRIPT:</span>
<div id="javascript-3">
<div class="javascript">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span> <span style="color: #66cc66;">&#40;</span>$<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">jQuery.<span style="color: #006600;">expr</span><span style="color: #66cc66;">&#91;</span><span style="color: #3366CC;">':'</span><span style="color: #66cc66;">&#93;</span>.<span style="color: #006600;">Contains</span> = <span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span>a,i,m<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000066; font-weight: bold;">return</span> <span style="color: #66cc66;">&#40;</span>a.<span style="color: #006600;">textContent</span> || a.<span style="color: #006600;">innerText</span> || <span style="color: #3366CC;">""</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">toUpperCase</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">indexOf</span><span style="color: #66cc66;">&#40;</span>m<span style="color: #66cc66;">&#91;</span><span style="color: #CC0000;color:#800000;">3</span><span style="color: #66cc66;">&#93;</span>.<span style="color: #006600;">toUpperCase</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>&amp;gt;=<span style="color: #CC0000;color:#800000;">0</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #003366; font-weight: bold;">function</span> filterList<span style="color: #66cc66;">&#40;</span>header, list<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #003366; font-weight: bold;">var</span> form = $<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">"</span></div>
</li>
<li style="font-weight: bold;color:#26536A;"></li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #3366CC;">&lt;form&gt;"</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">attr</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#123;</span><span style="color: #3366CC;">"class"</span>:<span style="color: #3366CC;">"filterform"</span>,<span style="color: #3366CC;">"action"</span>:<span style="color: #3366CC;">"#"</span><span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>,</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">input = $<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">"</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;"></li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #3366CC;">&lt;input /&gt;"</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">attr</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#123;</span><span style="color: #3366CC;">"class"</span>:<span style="color: #3366CC;">"filterinput"</span>,<span style="color: #3366CC;">"type"</span>:<span style="color: #3366CC;">"text"</span><span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">$<span style="color: #66cc66;">&#40;</span>form<span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">append</span><span style="color: #66cc66;">&#40;</span>input<span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">appendTo</span><span style="color: #66cc66;">&#40;</span>header<span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">$<span style="color: #66cc66;">&#40;</span>input<span style="color: #66cc66;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">.<span style="color: #006600;">change</span><span style="color: #66cc66;">&#40;</span> <span style="color: #003366; font-weight: bold;">function</span> <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #003366; font-weight: bold;">var</span> filter = $<span style="color: #66cc66;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">val</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000066; font-weight: bold;">if</span><span style="color: #66cc66;">&#40;</span>filter<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">$matches = $<span style="color: #66cc66;">&#40;</span>list<span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">find</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'a:Contains('</span> + filter + <span style="color: #3366CC;">')'</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">parent</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'li'</span>, list<span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">not</span><span style="color: #66cc66;">&#40;</span>$matches<span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">slideUp</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">$matches.<span style="color: #006600;">slideDown</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span> <span style="color: #000066; font-weight: bold;">else</span> <span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">$<span style="color: #66cc66;">&#40;</span>list<span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">find</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">"li"</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">slideDown</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000066; font-weight: bold;">return</span> <span style="color: #003366; font-weight: bold;">false</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">.<span style="color: #006600;">keyup</span><span style="color: #66cc66;">&#40;</span> <span style="color: #003366; font-weight: bold;">function</span> <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">$<span style="color: #66cc66;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">change</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">$<span style="color: #66cc66;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span> <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">filterList<span style="color: #66cc66;">&#40;</span>$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">"#form"</span><span style="color: #66cc66;">&#41;</span>, $<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">"#list"</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#40;</span>jQuery<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<h3>El HTML:</h3>
<div class="igBar"><span id="lhtml-4"><a href="#" onclick="javascript:showPlainTxt('html-4'); return false;">Clic para ver Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">HTML:</span>
<div id="html-4">
<div class="html">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://december.com/html/4/element/div.html"><span style="color: #000000; font-weight: bold;">&lt;div</span></a> <span style="color: #000066;">id</span>=<span style="color: #ff0000;">"wrap"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://december.com/html/4/element/div.html"><span style="color: #000000; font-weight: bold;">&lt;div</span></a> <span style="color: #000066;">class</span>=<span style="color: #ff0000;">"product-head"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://december.com/html/4/element/h1.html"><span style="color: #000000; font-weight: bold;">&lt;h1&gt;</span></a></span>Product Search<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/h1&gt;</span></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/div&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://december.com/html/4/element/ul.html"><span style="color: #000000; font-weight: bold;">&lt;ul</span></a> <span style="color: #000066;">id</span>=<span style="color: #ff0000;">"list"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">&lt;li&gt;</span></a></span><span style="color: #009900;"><a href="http://december.com/html/4/element/img.html"><span style="color: #000000; font-weight: bold;">&lt;img</span></a> <span style="color: #000066;">src</span>=<span style="color: #ff0000;">"products/apple.png"</span> <span style="color: #000066;">alt</span>=<span style="color: #ff0000;">""</span> <span style="color: #000066;">width</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">height</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">align</span>=<span style="color: #ff0000;">"absmiddle"</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></a></span> <span style="color: #009900;"><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">&lt;a</span></a> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">"#/Apple/"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span>Apple<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/a&gt;</span></span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/li&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">&lt;li&gt;</span></a></span><span style="color: #009900;"><a href="http://december.com/html/4/element/img.html"><span style="color: #000000; font-weight: bold;">&lt;img</span></a> <span style="color: #000066;">src</span>=<span style="color: #ff0000;">"products/acorn_squash.png"</span> <span style="color: #000066;">alt</span>=<span style="color: #ff0000;">""</span> <span style="color: #000066;">width</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">height</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">align</span>=<span style="color: #ff0000;">"absmiddle"</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></a></span> <span style="color: #009900;"><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">&lt;a</span></a> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">"#/Squash/"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span>Acorn Squash<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/a&gt;</span></span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/li&gt;</span></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">&lt;li&gt;</span></a></span><span style="color: #009900;"><a href="http://december.com/html/4/element/img.html"><span style="color: #000000; font-weight: bold;">&lt;img</span></a> <span style="color: #000066;">src</span>=<span style="color: #ff0000;">"products/broccoli.png"</span> <span style="color: #000066;">alt</span>=<span style="color: #ff0000;">""</span> <span style="color: #000066;">width</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">height</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">align</span>=<span style="color: #ff0000;">"absmiddle"</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></a></span> <span style="color: #009900;"><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">&lt;a</span></a> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">"#/Broccoli/"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span>Broccoli<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/a&gt;</span></span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/li&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">&lt;li&gt;</span></a></span><span style="color: #009900;"><a href="http://december.com/html/4/element/img.html"><span style="color: #000000; font-weight: bold;">&lt;img</span></a> <span style="color: #000066;">src</span>=<span style="color: #ff0000;">"products/carrot.png"</span> <span style="color: #000066;">alt</span>=<span style="color: #ff0000;">""</span> <span style="color: #000066;">width</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">height</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">align</span>=<span style="color: #ff0000;">"absmiddle"</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></a></span> <span style="color: #009900;"><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">&lt;a</span></a> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">"#/Carrot/"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span>Carrot<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/a&gt;</span></span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/li&gt;</span></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">&lt;li&gt;</span></a></span><span style="color: #009900;"><a href="http://december.com/html/4/element/img.html"><span style="color: #000000; font-weight: bold;">&lt;img</span></a> <span style="color: #000066;">src</span>=<span style="color: #ff0000;">"products/celery.png"</span> <span style="color: #000066;">alt</span>=<span style="color: #ff0000;">""</span> <span style="color: #000066;">width</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">height</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">align</span>=<span style="color: #ff0000;">"absmiddle"</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></a></span> <span style="color: #009900;"><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">&lt;a</span></a> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">"#/Celery/"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span>Celery<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/a&gt;</span></span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/li&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">&lt;li&gt;</span></a></span><span style="color: #009900;"><a href="http://december.com/html/4/element/img.html"><span style="color: #000000; font-weight: bold;">&lt;img</span></a> <span style="color: #000066;">src</span>=<span style="color: #ff0000;">"products/lettuce.png"</span> <span style="color: #000066;">alt</span>=<span style="color: #ff0000;">""</span> <span style="color: #000066;">width</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">height</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">align</span>=<span style="color: #ff0000;">"absmiddle"</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></a></span> <span style="color: #009900;"><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">&lt;a</span></a> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">"#/Lettuce/"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span>Lettuce<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/a&gt;</span></span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/li&gt;</span></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">&lt;li&gt;</span></a></span><span style="color: #009900;"><a href="http://december.com/html/4/element/img.html"><span style="color: #000000; font-weight: bold;">&lt;img</span></a> <span style="color: #000066;">src</span>=<span style="color: #ff0000;">"products/mushroom.png"</span> <span style="color: #000066;">alt</span>=<span style="color: #ff0000;">""</span> <span style="color: #000066;">width</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">height</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">align</span>=<span style="color: #ff0000;">"absmiddle"</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></a></span> <span style="color: #009900;"><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">&lt;a</span></a> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">"#/Mushroom/"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span>Mushroom<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/a&gt;</span></span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/li&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">&lt;li&gt;</span></a></span><span style="color: #009900;"><a href="http://december.com/html/4/element/img.html"><span style="color: #000000; font-weight: bold;">&lt;img</span></a> <span style="color: #000066;">src</span>=<span style="color: #ff0000;">"products/onion.png"</span> <span style="color: #000066;">alt</span>=<span style="color: #ff0000;">""</span> <span style="color: #000066;">width</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">height</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">align</span>=<span style="color: #ff0000;">"absmiddle"</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></a></span> <span style="color: #009900;"><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">&lt;a</span></a> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">"#/Onion/"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span>Onion<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/a&gt;</span></span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/li&gt;</span></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">&lt;li&gt;</span></a></span><span style="color: #009900;"><a href="http://december.com/html/4/element/img.html"><span style="color: #000000; font-weight: bold;">&lt;img</span></a> <span style="color: #000066;">src</span>=<span style="color: #ff0000;">"products/potato.png"</span> <span style="color: #000066;">alt</span>=<span style="color: #ff0000;">""</span> <span style="color: #000066;">width</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">height</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">align</span>=<span style="color: #ff0000;">"absmiddle"</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></a></span> <span style="color: #009900;"><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">&lt;a</span></a> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">"#/Potato/"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span>Potato<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/a&gt;</span></span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/li&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">&lt;li&gt;</span></a></span><span style="color: #009900;"><a href="http://december.com/html/4/element/img.html"><span style="color: #000000; font-weight: bold;">&lt;img</span></a> <span style="color: #000066;">src</span>=<span style="color: #ff0000;">"products/pumpkin.png"</span> <span style="color: #000066;">alt</span>=<span style="color: #ff0000;">""</span> <span style="color: #000066;">width</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">height</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">align</span>=<span style="color: #ff0000;">"absmiddle"</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></a></span> <span style="color: #009900;"><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">&lt;a</span></a> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">"#/Pumpkin/"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span>Pumpkin<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/a&gt;</span></span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/li&gt;</span></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">&lt;li&gt;</span></a></span><span style="color: #009900;"><a href="http://december.com/html/4/element/img.html"><span style="color: #000000; font-weight: bold;">&lt;img</span></a> <span style="color: #000066;">src</span>=<span style="color: #ff0000;">"products/radish.png"</span> <span style="color: #000066;">alt</span>=<span style="color: #ff0000;">""</span> <span style="color: #000066;">width</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">height</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">align</span>=<span style="color: #ff0000;">"absmiddle"</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></a></span> <span style="color: #009900;"><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">&lt;a</span></a> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">"#/Radish/"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span>Radish<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/a&gt;</span></span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/li&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">&lt;li&gt;</span></a></span><span style="color: #009900;"><a href="http://december.com/html/4/element/img.html"><span style="color: #000000; font-weight: bold;">&lt;img</span></a> <span style="color: #000066;">src</span>=<span style="color: #ff0000;">"products/squash.png"</span> <span style="color: #000066;">alt</span>=<span style="color: #ff0000;">""</span> <span style="color: #000066;">width</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">height</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">align</span>=<span style="color: #ff0000;">"absmiddle"</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></a></span> <span style="color: #009900;"><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">&lt;a</span></a> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">"#/Squash/"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span>Squash<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/a&gt;</span></span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/li&gt;</span></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">&lt;li&gt;</span></a></span><span style="color: #009900;"><a href="http://december.com/html/4/element/img.html"><span style="color: #000000; font-weight: bold;">&lt;img</span></a> <span style="color: #000066;">src</span>=<span style="color: #ff0000;">"products/strawberry.png"</span> <span style="color: #000066;">alt</span>=<span style="color: #ff0000;">""</span> <span style="color: #000066;">width</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">height</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">align</span>=<span style="color: #ff0000;">"absmiddle"</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></a></span> <span style="color: #009900;"><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">&lt;a</span></a> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">"#/strawberry/"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span>Strawberry<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/a&gt;</span></span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/li&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">&lt;li&gt;</span></a></span><span style="color: #009900;"><a href="http://december.com/html/4/element/img.html"><span style="color: #000000; font-weight: bold;">&lt;img</span></a> <span style="color: #000066;">src</span>=<span style="color: #ff0000;">"products/sugar_snap.png"</span> <span style="color: #000066;">alt</span>=<span style="color: #ff0000;">""</span> <span style="color: #000066;">width</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">height</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">align</span>=<span style="color: #ff0000;">"absmiddle"</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></a></span> <span style="color: #009900;"><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">&lt;a</span></a> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">"#/SugarSnaps/"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span>Sugar Snaps<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/a&gt;</span></span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/li&gt;</span></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">&lt;li&gt;</span></a></span><span style="color: #009900;"><a href="http://december.com/html/4/element/img.html"><span style="color: #000000; font-weight: bold;">&lt;img</span></a> <span style="color: #000066;">src</span>=<span style="color: #ff0000;">"products/tomato.png"</span> <span style="color: #000066;">alt</span>=<span style="color: #ff0000;">""</span> <span style="color: #000066;">width</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">height</span>=<span style="color: #ff0000;">"30"</span> <span style="color: #000066;">align</span>=<span style="color: #ff0000;">"absmiddle"</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></a></span> <span style="color: #009900;"><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">&lt;a</span></a> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">"#/tomato/"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span>Tomato<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/a&gt;</span></span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/li&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/ul&gt;</span></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/div&gt;</span></span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<h1><a href="http://papermashup.com/demos/jquery-list-filter/" target="_blank">DEMO</a></h1>
<address>Visto en <strong>PaperMashup</strong></address>
</p></form>
]]></content:encoded>
			<wfw:commentRss>http://www.iugo.com.uy/blog/index.php/filtrar-resultados-en-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery 1.5: disponible</title>
		<link>http://www.iugo.com.uy/blog/index.php/jquery-1-5-disponible/</link>
		<comments>http://www.iugo.com.uy/blog/index.php/jquery-1-5-disponible/#comments</comments>
		<pubDate>Tue, 01 Feb 2011 18:21:00 +0000</pubDate>
		<dc:creator>alfonso</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.iugo.com.uy/blog/?p=365</guid>
		<description><![CDATA[La versión 1.5 de jQuery ya esta disponible para descargar. Entre sus principales mejoras encontramos 83 bugs solucionados y la reescritura completa de su módulo Ajax. Descargas: - jQuery Regular - jQuery Minified Visto en blog.jQuery]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" src="http://www.23digital.com.ar/wp-content/uploads/2010/08/jquery-logo.png" alt="" width="268" height="268" /></p>
<p>La versión 1.5 de jQuery ya esta disponible para descargar.</p>
<p>Entre sus principales mejoras encontramos <a href="http://bugs.jquery.com/query?status=closed&amp;resolution=fixed&amp;milestone=1.5&amp;group=resolution&amp;order=priority" target="_blank">83 bugs</a> solucionados y la reescritura completa de su módulo Ajax.</p>
<p><strong>Descargas:</strong></p>
<p>- <a href="http://code.jquery.com/jquery-1.5.js" target="_blank">jQuery Regular</a><br />
- <a href="http://code.jquery.com/jquery-1.5.min.js" target="_blank">jQuery Minified</a></p>
<p>Visto en <a href="http://blog.jquery.com/2011/01/31/jquery-15-released/" target="_blank">blog.jQuery</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iugo.com.uy/blog/index.php/jquery-1-5-disponible/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LibreOffice 3.3 cobra vida</title>
		<link>http://www.iugo.com.uy/blog/index.php/libreoffice-3-3-cobra-vida/</link>
		<comments>http://www.iugo.com.uy/blog/index.php/libreoffice-3-3-cobra-vida/#comments</comments>
		<pubDate>Thu, 27 Jan 2011 15:49:09 +0000</pubDate>
		<dc:creator>alfonso</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.iugo.com.uy/blog/?p=358</guid>
		<description><![CDATA[The Document Fundation anuncia la liberación de LibreOffice 3.3. La opinión general es que, aunque no se han encontrado grandes novedades, la performance en este nuevo release ha mejorado considerablemente, aunque aconsejan no hacerse muchas ilusiones... Quien lo pruebe podría contarnos! DESCARGAR LibreOffice 3.3]]></description>
			<content:encoded><![CDATA[<p>The Document Fundation anuncia la liberación de LibreOffice 3.3.</p>
<p><img class="alignnone" src="http://www.muylinux.com/wp-content/uploads/2011/01/LibreOffice1.jpg" alt="" width="424" height="295" /><br />
La opinión general es que, aunque no se han encontrado grandes novedades, la performance en este nuevo release ha mejorado considerablemente, aunque aconsejan no hacerse muchas ilusiones...</p>
<p>Quien lo pruebe podría contarnos!</p>
<p><a href="http://www.libreoffice.org/download/" target="_blank">DESCARGAR LibreOffice 3.3 </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iugo.com.uy/blog/index.php/libreoffice-3-3-cobra-vida/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pop-ups en Chrome para notificaciones de chat y correos Gmail</title>
		<link>http://www.iugo.com.uy/blog/index.php/pop-ups-en-chrome-para-notificaciones-de-chat-y-correos-gmail/</link>
		<comments>http://www.iugo.com.uy/blog/index.php/pop-ups-en-chrome-para-notificaciones-de-chat-y-correos-gmail/#comments</comments>
		<pubDate>Thu, 27 Jan 2011 15:33:41 +0000</pubDate>
		<dc:creator>alfonso</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.iugo.com.uy/blog/?p=355</guid>
		<description><![CDATA[Sacándole jugo a la compatibilidad de su navegador con HTML 5, Google ha añadido a Chrome la posibilidad de recibir mediante pop-ups, notificaciones de chat y coreos nuevos en Gmail. Esta funcionalidad ya está disponible para todos los usuarios de Gmail que utilicen Chrome. Dichas notificaciones se pueden activar o desactivar desde la pestaña General. Momentáneamente, [...]]]></description>
			<content:encoded><![CDATA[<p>Sacándole jugo a la compatibilidad de su navegador con HTML 5, Google ha añadido a Chrome la posibilidad de recibir mediante pop-ups, notificaciones de chat y coreos nuevos en Gmail.</p>
<p><img class="alignnone" src="http://cdn.alt1040.com/files/2011/01/desktopnotif1.png" alt="" width="317" height="215" /><span id="more-355"></span></p>
<p>Esta funcionalidad ya está disponible para todos los usuarios de Gmail que utilicen Chrome. Dichas notificaciones se pueden activar o desactivar desde la pestaña General.</p>
<p><img class="alignnone" src="http://cdn.alt1040.com/files/2011/01/notificaciones-gmail.jpg" alt="" width="790" height="121" /></p>
<p>Momentáneamente, esta funcionalidad solo está disponible para Chrome, pero desde Google aseguran que están trabajando para que esta característica sea propia de Gmail y no dependa del navegador en cuestión.</p>
<p>Visto en ALT1040</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iugo.com.uy/blog/index.php/pop-ups-en-chrome-para-notificaciones-de-chat-y-correos-gmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BlueGriffon: nuevo editor Wysiwyg que soporta CSS3 y HTML5</title>
		<link>http://www.iugo.com.uy/blog/index.php/bluegriffon-nuevo-editor-wysiwyg-que-soporta-css3-y-html5/</link>
		<comments>http://www.iugo.com.uy/blog/index.php/bluegriffon-nuevo-editor-wysiwyg-que-soporta-css3-y-html5/#comments</comments>
		<pubDate>Thu, 27 Jan 2011 14:41:07 +0000</pubDate>
		<dc:creator>alfonso</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.iugo.com.uy/blog/?p=350</guid>
		<description><![CDATA[BlueGriffon hace su aparición en el conjunto de aplicaciones para el desarrollo. Se trata de un editor multiplataforma OpenSource que nos permite la edición visual de nuestras páginas en html, con soporte CSS3 y HTML5. Página oficial Desde ACÁ se puede descargar su instalador para Windows, Linux u OSX. Visto en: Ubuntu Life]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" src="http://ubuntulife.files.wordpress.com/2011/01/bluegriffon.png?w=400" alt="" width="400" height="254" /></p>
<p>BlueGriffon hace su aparición en el conjunto de aplicaciones para el desarrollo.<br />
Se trata de un editor multiplataforma OpenSource que nos permite la edición visual de nuestras páginas en html, con soporte CSS3 y HTML5.</p>
<p><a href="http://bluegriffon.org/" target="_blank">Página oficial</a></p>
<p>Desde <a href="http://bluegriffon.org/freshmeat/nightlies/latest/" target="_blank">ACÁ</a> se puede descargar su instalador para Windows, Linux u OSX.</p>
<p>Visto en: Ubuntu Life</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iugo.com.uy/blog/index.php/bluegriffon-nuevo-editor-wysiwyg-que-soporta-css3-y-html5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>El nuevo logo de HTML 5</title>
		<link>http://www.iugo.com.uy/blog/index.php/el-nuevo-logo-de-html-5/</link>
		<comments>http://www.iugo.com.uy/blog/index.php/el-nuevo-logo-de-html-5/#comments</comments>
		<pubDate>Thu, 27 Jan 2011 14:30:55 +0000</pubDate>
		<dc:creator>alfonso</dc:creator>
				<category><![CDATA[curiosidades]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[logotipo]]></category>

		<guid isPermaLink="false">http://www.iugo.com.uy/blog/?p=346</guid>
		<description><![CDATA[El W3C presentó la pasada semana el logotipo para la nueva revisión del lenguaje. Es la primera vez que HTML tiene un logotipo, y la última en tener un número de versión, es decir, no habrá HTML 6 en un futuro, será solamente HTML. La idea del Consorcio Internacional World Wide Web es que este [...]]]></description>
			<content:encoded><![CDATA[<p>El W3C presentó la pasada semana el logotipo para la nueva revisión del lenguaje. Es la primera vez que HTML tiene un logotipo, y la última en tener un número de versión, es decir, no habrá HTML 6 en un futuro, será solamente HTML.</p>
<p><img class="alignnone" src="http://static.betazeta.com/www.fayerwayer.com/up/2011/01/html5-logo-595x519.png" alt="" width="595" height="519" /></p>
<p>La idea del Consorcio Internacional World Wide Web es que este logo represente, además de a HTML, a CSS, SVG y WOFF entre otras.</p>
<p>En este <a href="http://www.html5shirt.com/facebook/" target="_blank">LINK</a> podés comprar remeras y stickers para apoyar a la plataforma web abierta!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iugo.com.uy/blog/index.php/el-nuevo-logo-de-html-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

