<?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>Comentarios en: Alternativas al tag script más rápidas</title>
	<atom:link href="http://www.anieto2k.com/2008/12/29/alternativas-al-tag-script-mas-rapidas/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.anieto2k.com/2008/12/29/alternativas-al-tag-script-mas-rapidas/</link>
	<description>Desarrollo web, Wordpress, y alguna cosilla más</description>
	<lastBuildDate>Tue, 16 Mar 2010 21:05:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Por: Baja tus scripts al final del fichero &#124; aNieto2K</title>
		<link>http://www.anieto2k.com/2008/12/29/alternativas-al-tag-script-mas-rapidas/#comment-57450</link>
		<dc:creator>Baja tus scripts al final del fichero &#124; aNieto2K</dc:creator>
		<pubDate>Tue, 30 Jun 2009 11:51:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.anieto2k.com/?p=7192#comment-57450</guid>
		<description>[...] de las técnicas más usadas para reducir el tiempo de carga de una página web es la de bajar el Javascript al final del fichero HTML, concretamente justo [...]</description>
		<content:encoded><![CDATA[<p>[...] de las técnicas más usadas para reducir el tiempo de carga de una página web es la de bajar el Javascript al final del fichero HTML, concretamente justo [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Cargando javascript asincronamiente &#124; aNieto2K</title>
		<link>http://www.anieto2k.com/2008/12/29/alternativas-al-tag-script-mas-rapidas/#comment-55012</link>
		<dc:creator>Cargando javascript asincronamiente &#124; aNieto2K</dc:creator>
		<pubDate>Thu, 19 Mar 2009 17:35:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.anieto2k.com/?p=7192#comment-55012</guid>
		<description>[...] de ver que hace 81 días comentamos algo sobre el tema. Sorry.     &#8592; Confirmado: Internet Explorer 8 hoy, apartir de las [...]</description>
		<content:encoded><![CDATA[<p>[...] de ver que hace 81 días comentamos algo sobre el tema. Sorry.     &larr; Confirmado: Internet Explorer 8 hoy, apartir de las [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: ragamo</title>
		<link>http://www.anieto2k.com/2008/12/29/alternativas-al-tag-script-mas-rapidas/#comment-53019</link>
		<dc:creator>ragamo</dc:creator>
		<pubDate>Tue, 30 Dec 2008 12:10:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.anieto2k.com/?p=7192#comment-53019</guid>
		<description>Genial, no lo conocia xD
Se agradece.</description>
		<content:encoded><![CDATA[<p>Genial, no lo conocia xD<br />
Se agradece.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: aNieto2k</title>
		<link>http://www.anieto2k.com/2008/12/29/alternativas-al-tag-script-mas-rapidas/#comment-53006</link>
		<dc:creator>aNieto2k</dc:creator>
		<pubDate>Mon, 29 Dec 2008 23:03:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.anieto2k.com/?p=7192#comment-53006</guid>
		<description>&lt;a href=&quot;#comment-53005&quot; title=&quot;Responder a ragamo&quot; rel=&quot;nofollow&quot;&gt;@ragamo&lt;/a&gt;: Por que no usas &lt;a href=&quot;http://docs.jquery.com/Ajax/jQuery.getScript#urlcallback&quot; rel=&quot;nofollow&quot;&gt;&lt;code&gt;$().getScript()&lt;/code&gt;&lt;/a&gt;??</description>
		<content:encoded><![CDATA[<p><a href="#comment-53005" title="Responder a ragamo" rel="nofollow">@ragamo</a>: Por que no usas <a href="http://docs.jquery.com/Ajax/jQuery.getScript#urlcallback" rel="nofollow"><code>$().getScript()</code></a>??</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: ragamo</title>
		<link>http://www.anieto2k.com/2008/12/29/alternativas-al-tag-script-mas-rapidas/#comment-53005</link>
		<dc:creator>ragamo</dc:creator>
		<pubDate>Mon, 29 Dec 2008 22:57:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.anieto2k.com/?p=7192#comment-53005</guid>
		<description>&lt;pre&gt;&lt;code&gt;function addJS(js) {
	jQuery(&#039;head&#039;).append(&#039;&#039;);
}&lt;/code&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<pre><code>function addJS(js) {
	jQuery('head').append('');
}</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>Por: ragamo</title>
		<link>http://www.anieto2k.com/2008/12/29/alternativas-al-tag-script-mas-rapidas/#comment-53004</link>
		<dc:creator>ragamo</dc:creator>
		<pubDate>Mon, 29 Dec 2008 22:55:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.anieto2k.com/?p=7192#comment-53004</guid>
		<description>Personalmente, cuando uso jQuery adjunto mis otros archivos JS utilizando la siguiente funcion:
&lt;pre&gt;&lt;code&gt;
function importJS(js) {
	jQuery(&#039;head&#039;).append(&#039;&#039;);
}
&lt;/code&gt;&lt;/pre&gt;
No he analizado tiempos de carga pero por lo menos me da buenos resultados y funciona.

Saludos y felicitaciones po el blog.</description>
		<content:encoded><![CDATA[<p>Personalmente, cuando uso jQuery adjunto mis otros archivos JS utilizando la siguiente funcion:</p>
<pre><code>
function importJS(js) {
	jQuery('head').append('');
}
</code></pre>
<p>No he analizado tiempos de carga pero por lo menos me da buenos resultados y funciona.</p>
<p>Saludos y felicitaciones po el blog.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
