<?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: Preload CSS/JavaScript without execution</title>
	<atom:link href="http://www.phpied.com/preload-cssjavascript-without-execution/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phpied.com/preload-cssjavascript-without-execution/</link>
	<description>Stoyan&#039;s blog about &#60;a href=&#34;/category/xhtml&#34; class=&#34;tag-minor&#34;&#62;(x)html(5)&#60;/a&#62;, &#60;a href=&#34;/category/ajax&#34; class=&#34;tag-major&#34;&#62;ajax&#60;/a&#62;, &#60;a href=&#34;/category/bookmarklets&#34; class=&#34;tag-major&#34;&#62;bookmarklets&#60;/a&#62;, &#60;a href=&#34;/category/browsers&#34; class=&#34;tag-minor&#34;&#62;browsers&#60;/a&#62;, &#60;a href=&#34;/category/css&#34; class=&#34;tag-normal&#34;&#62;css&#60;/a&#62;, &#60;a href=&#34;/category/firebug&#34; class=&#34;tag-minor&#34;&#62;firebug&#60;/a&#62;, &#60;a href=&#34;/category/javascript&#34; class=&#34;tag-numero-uno&#34;&#62;javascript&#60;/a&#62;, &#60;a href=&#34;/category/json&#34; class=&#34;tag-normal&#34;&#62;json&#60;/a&#62;, &#60;a href=&#34;/category/mdb2&#34; class=&#34;tag-minor&#34;&#62;mdb2&#60;/a&#62;, &#60;a href=&#34;/category/mysql&#34; class=&#34;tag-normal&#34;&#62;mysql&#60;/a&#62;, &#60;a href=&#34;/category/pear&#34; class=&#34;tag-numero-uno&#34;&#62;pear&#60;/a&#62;, &#60;a href=&#34;/category/performance&#34; class=&#34;tag-major&#34;&#62;performance&#60;/a&#62;, &#60;a href=&#34;/category/php&#34; class=&#34;tag-numero-uno&#34;&#62;php&#60;/a&#62;, &#60;a href=&#34;/category/phpbb&#34; class=&#34;tag-major&#34;&#62;phpbb&#60;/a&#62;, &#60;a href=&#34;/category/tools&#34; class=&#34;tag-normal&#34;&#62;tools&#60;/a&#62;, &#60;a href=&#34;/category/yslow&#34; class=&#34;tag-minor&#34;&#62;yslow&#60;/a&#62;, &#60;a href=&#34;/category/yui&#34; class=&#34;tag-normal&#34;&#62;yui&#60;/a&#62;, &#60;a href=&#34;/category/writing&#34; class=&#34;tag-minor&#34;&#62;writing&#60;/a&#62;, &#60;a href=&#34;/category/music&#34; class=&#34;tag-major&#34;&#62;music&#60;/a&#62;,... &#60;a href=&#34;/category/life-and-everything&#34; class=&#34;tag-normal&#34;&#62;life and everything&#60;/a&#62;.</description>
	<lastBuildDate>Sat, 11 Feb 2012 14:07:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	<item>
		<title>By: 浏览器的加载与页面性能优化-邓玮生博客</title>
		<link>http://www.phpied.com/preload-cssjavascript-without-execution/#comment-81134</link>
		<dc:creator>浏览器的加载与页面性能优化-邓玮生博客</dc:creator>
		<pubDate>Thu, 05 Jan 2012 08:13:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpied.com/?p=1376#comment-81134</guid>
		<description>[...] 对于不在当前页面中的链接，如果需要预下载后续内容可以用js来实现，请参考这篇文章Preload CSS/JavaScript without execution [...]</description>
		<content:encoded><![CDATA[<p>[...] 对于不在当前页面中的链接，如果需要预下载后续内容可以用js来实现，请参考这篇文章Preload CSS/JavaScript without execution [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gyx</title>
		<link>http://www.phpied.com/preload-cssjavascript-without-execution/#comment-80720</link>
		<dc:creator>gyx</dc:creator>
		<pubDate>Fri, 23 Dec 2011 10:25:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpied.com/?p=1376#comment-80720</guid>
		<description>I tried follow code,tested in ie8 chrome16 and ff8,ie and chrome do cache the javasctipt,bu i have no idea wether firefox do so for firebug don&#039;t report wether the new js is from cache.
var names=[]//js to be loaded
var loadCount=0;
var loadCountl=names.length;
var img=new Image();//使用改变img对象src的方式加载所需js一次，放入缓存
img.onerror = function (a) {//当img加载完成后会触发onerror事件（不会触发onload，可能是由于mime类型不对）
        if(loadCount0){//开始加载
        loadJs(names[loadCount++])
    }
    function loadJs(packageName){//预加载js，使用了kola加载器的内部函数
        var src=kola.Package._path(packageName);
        img.src=src;
    }</description>
		<content:encoded><![CDATA[<p>I tried follow code,tested in ie8 chrome16 and ff8,ie and chrome do cache the javasctipt,bu i have no idea wether firefox do so for firebug don&#8217;t report wether the new js is from cache.<br />
var names=[]//js to be loaded<br />
var loadCount=0;<br />
var loadCountl=names.length;<br />
var img=new Image();//使用改变img对象src的方式加载所需js一次，放入缓存<br />
img.onerror = function (a) {//当img加载完成后会触发onerror事件（不会触发onload，可能是由于mime类型不对）<br />
        if(loadCount0){//开始加载<br />
        loadJs(names[loadCount++])<br />
    }<br />
    function loadJs(packageName){//预加载js，使用了kola加载器的内部函数<br />
        var src=kola.Package._path(packageName);<br />
        img.src=src;<br />
    }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: UE之旅 &#187; 浏览器的加载与页面性能优化</title>
		<link>http://www.phpied.com/preload-cssjavascript-without-execution/#comment-80613</link>
		<dc:creator>UE之旅 &#187; 浏览器的加载与页面性能优化</dc:creator>
		<pubDate>Wed, 14 Dec 2011 12:52:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpied.com/?p=1376#comment-80613</guid>
		<description>[...] 对于不在当前页面中的链接，如果需要预下载后续内容可以用js来实现，请参考这篇文章Preload CSS/JavaScript without execution [...]</description>
		<content:encoded><![CDATA[<p>[...] 对于不在当前页面中的链接，如果需要预下载后续内容可以用js来实现，请参考这篇文章Preload CSS/JavaScript without execution [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 浏览器的加载与页面性能优化 &#124; 行走在互联网路上</title>
		<link>http://www.phpied.com/preload-cssjavascript-without-execution/#comment-80611</link>
		<dc:creator>浏览器的加载与页面性能优化 &#124; 行走在互联网路上</dc:creator>
		<pubDate>Wed, 14 Dec 2011 09:46:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpied.com/?p=1376#comment-80611</guid>
		<description>[...] 对于不在当前页面中的链接，如果需要预下载后续内容可以用js来实现，请参考这篇文章Preload CSS/JavaScript without execution [...]</description>
		<content:encoded><![CDATA[<p>[...] 对于不在当前页面中的链接，如果需要预下载后续内容可以用js来实现，请参考这篇文章Preload CSS/JavaScript without execution [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 390 ressources Javascript &#38; jQuery</title>
		<link>http://www.phpied.com/preload-cssjavascript-without-execution/#comment-80366</link>
		<dc:creator>390 ressources Javascript &#38; jQuery</dc:creator>
		<pubDate>Mon, 28 Nov 2011 18:45:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpied.com/?p=1376#comment-80366</guid>
		<description>[...] Preload CSS/JavaScript without execution &#8211; Pré-chargement des CSS et du Javascript sans exécution. [...]</description>
		<content:encoded><![CDATA[<p>[...] Preload CSS/JavaScript without execution &#8211; Pré-chargement des CSS et du Javascript sans exécution. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 139 ressources Javascript et jQuery</title>
		<link>http://www.phpied.com/preload-cssjavascript-without-execution/#comment-80288</link>
		<dc:creator>139 ressources Javascript et jQuery</dc:creator>
		<pubDate>Sun, 27 Nov 2011 11:36:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpied.com/?p=1376#comment-80288</guid>
		<description>[...] Preload CSS/JavaScript without execution &#8211; Pré-chargement des CSS et du Javascript sans exécution. [...]</description>
		<content:encoded><![CDATA[<p>[...] Preload CSS/JavaScript without execution &#8211; Pré-chargement des CSS et du Javascript sans exécution. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oxyhives prescription</title>
		<link>http://www.phpied.com/preload-cssjavascript-without-execution/#comment-79866</link>
		<dc:creator>oxyhives prescription</dc:creator>
		<pubDate>Fri, 18 Nov 2011 09:02:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpied.com/?p=1376#comment-79866</guid>
		<description>&lt;strong&gt;oxyhives prescription...&lt;/strong&gt;

[...]Preload CSS/JavaScript without execution / Stoyan&#039;s phpied.com[...]...</description>
		<content:encoded><![CDATA[<p><strong>oxyhives prescription&#8230;</strong></p>
<p>[...]Preload CSS/JavaScript without execution / Stoyan&#8217;s phpied.com[...]&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 预取 &#38; 预渲染 &#124; YuQin.Me</title>
		<link>http://www.phpied.com/preload-cssjavascript-without-execution/#comment-78643</link>
		<dc:creator>预取 &#38; 预渲染 &#124; YuQin.Me</dc:creator>
		<pubDate>Wed, 07 Sep 2011 08:24:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpied.com/?p=1376#comment-78643</guid>
		<description>[...] 对于不在当前页面中的链接，如果需要预下载后续内容可以用js来实现，请参考这篇文章Preload CSS/JavaScript without execution [...]</description>
		<content:encoded><![CDATA[<p>[...] 对于不在当前页面中的链接，如果需要预下载后续内容可以用js来实现，请参考这篇文章Preload CSS/JavaScript without execution [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Boom.js Release</title>
		<link>http://www.phpied.com/preload-cssjavascript-without-execution/#comment-78577</link>
		<dc:creator>Boom.js Release</dc:creator>
		<pubDate>Wed, 31 Aug 2011 15:16:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpied.com/?p=1376#comment-78577</guid>
		<description>[...] &#8211; 使用preload技术，除了loader外 [...]</description>
		<content:encoded><![CDATA[<p>[...] &#8211; 使用preload技术，除了loader外 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Whiteboard Video: Pre-Fetching &#8211; Anticipating The Users Next Click &#124; Blaze.io</title>
		<link>http://www.phpied.com/preload-cssjavascript-without-execution/#comment-78563</link>
		<dc:creator>Whiteboard Video: Pre-Fetching &#8211; Anticipating The Users Next Click &#124; Blaze.io</dc:creator>
		<pubDate>Tue, 30 Aug 2011 14:44:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpied.com/?p=1376#comment-78563</guid>
		<description>[...] Stoyan Stefanov wrote a great post with tactical information on pre-fetching. Here is his post: http://www.phpied.com/preload-cssjavascript-without-execution/    This entry was posted in Technical. Bookmark the permalink.           blog comments powered by [...]</description>
		<content:encoded><![CDATA[<p>[...] Stoyan Stefanov wrote a great post with tactical information on pre-fetching. Here is his post: <a href="http://www.phpied.com/preload-cssjavascript-without-execution/" rel="nofollow">http://www.phpied.com/preload-cssjavascript-without-execution/</a>    This entry was posted in Technical. Bookmark the permalink.           blog comments powered by [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

