<?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: QueryLoader &#8211; preload your website in style</title>
	<atom:link href="http://www.gayadesign.com/diy/queryloader-preload-your-website-in-style/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gayadesign.com/diy/queryloader-preload-your-website-in-style/</link>
	<description>PHP, CSS, xhtml, javascript / jquery tutorials</description>
	<lastBuildDate>Sat, 18 Feb 2012 11:01:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: Awesome Jquery driven websites</title>
		<link>http://www.gayadesign.com/diy/queryloader-preload-your-website-in-style/comment-page-12/#comment-129867</link>
		<dc:creator>Awesome Jquery driven websites</dc:creator>
		<pubDate>Thu, 16 Feb 2012 14:52:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.gayadesign.com/?p=489#comment-129867</guid>
		<description>[...] Jquery &#8211; Query Loader &#8211; Preload your website with style [...]</description>
		<content:encoded><![CDATA[<p>[...] Jquery &#8211; Query Loader &#8211; Preload your website with style [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trip</title>
		<link>http://www.gayadesign.com/diy/queryloader-preload-your-website-in-style/comment-page-12/#comment-129703</link>
		<dc:creator>Trip</dc:creator>
		<pubDate>Wed, 15 Feb 2012 21:02:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.gayadesign.com/?p=489#comment-129703</guid>
		<description>My preloader was stopping everytime at 97.2233% and not finishing. I just changed this line of code :

	if (perc &gt; 99) {

to :

	if (perc &gt; 97) {

Works great! :D</description>
		<content:encoded><![CDATA[<p>My preloader was stopping everytime at 97.2233% and not finishing. I just changed this line of code :</p>
<p>	if (perc &gt; 99) {</p>
<p>to :</p>
<p>	if (perc &gt; 97) {</p>
<p>Works great! :D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Query Loader ile Sitenize Ön Yükleme &#124; SC Bilişim – SEO &#8211; Teknoloji &#8211; İnternet &#8211; Bilişim</title>
		<link>http://www.gayadesign.com/diy/queryloader-preload-your-website-in-style/comment-page-12/#comment-128537</link>
		<dc:creator>Query Loader ile Sitenize Ön Yükleme &#124; SC Bilişim – SEO &#8211; Teknoloji &#8211; İnternet &#8211; Bilişim</dc:creator>
		<pubDate>Fri, 10 Feb 2012 20:23:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.gayadesign.com/?p=489#comment-128537</guid>
		<description>[...] Loader için detaylı site için tıklayın. Dikkat site ingilizce’dir. Demo &#124; [...]</description>
		<content:encoded><![CDATA[<p>[...] Loader için detaylı site için tıklayın. Dikkat site ingilizce’dir. Demo | [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AnarchyChampion</title>
		<link>http://www.gayadesign.com/diy/queryloader-preload-your-website-in-style/comment-page-12/#comment-128171</link>
		<dc:creator>AnarchyChampion</dc:creator>
		<pubDate>Thu, 09 Feb 2012 11:12:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.gayadesign.com/?p=489#comment-128171</guid>
		<description>The &#039;$(window).height() is not a function&#039; issue at 160 line solved.

Right code:

//determine the height of the preloader for the effect
		if (QueryLoader.selectorPreload == &quot;body&quot;) {
			var height = $(QueryLoader.overlay).outerHeight(); //$(window).height();
		} else {
			var height = $(QueryLoader.selectorPreload).outerHeight();
		}</description>
		<content:encoded><![CDATA[<p>The &#8216;$(window).height() is not a function&#8217; issue at 160 line solved.</p>
<p>Right code:</p>
<p>//determine the height of the preloader for the effect<br />
		if (QueryLoader.selectorPreload == &#8220;body&#8221;) {<br />
			var height = $(QueryLoader.overlay).outerHeight(); //$(window).height();<br />
		} else {<br />
			var height = $(QueryLoader.selectorPreload).outerHeight();<br />
		}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Grace Basilio</title>
		<link>http://www.gayadesign.com/diy/queryloader-preload-your-website-in-style/comment-page-12/#comment-126683</link>
		<dc:creator>Grace Basilio</dc:creator>
		<pubDate>Sat, 04 Feb 2012 15:17:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.gayadesign.com/?p=489#comment-126683</guid>
		<description>A small contribution...

As I implemented queryLoader to my website, I run through a problem saying attr(&quot;tagName&quot;) was not defined (Line 64). So I did a tiny modification and error went away. This is my code for line 64:

} else if (typeof($(this).attr(&quot;src&quot;)) != &quot;undefined&quot; &amp;&amp; $(this).get(0).tagName.toLowerCase() == &quot;img&quot;) {

Hope it&#039;s of help for ppls with the same problem I had :)</description>
		<content:encoded><![CDATA[<p>A small contribution&#8230;</p>
<p>As I implemented queryLoader to my website, I run through a problem saying attr(&#8220;tagName&#8221;) was not defined (Line 64). So I did a tiny modification and error went away. This is my code for line 64:</p>
<p>} else if (typeof($(this).attr(&#8220;src&#8221;)) != &#8220;undefined&#8221; &amp;&amp; $(this).get(0).tagName.toLowerCase() == &#8220;img&#8221;) {</p>
<p>Hope it&#8217;s of help for ppls with the same problem I had :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cymo</title>
		<link>http://www.gayadesign.com/diy/queryloader-preload-your-website-in-style/comment-page-12/#comment-121652</link>
		<dc:creator>Cymo</dc:creator>
		<pubDate>Mon, 23 Jan 2012 13:12:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.gayadesign.com/?p=489#comment-121652</guid>
		<description>Great script, easy to integrate. Thanks!</description>
		<content:encoded><![CDATA[<p>Great script, easy to integrate. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Drachsi</title>
		<link>http://www.gayadesign.com/diy/queryloader-preload-your-website-in-style/comment-page-12/#comment-120225</link>
		<dc:creator>Drachsi</dc:creator>
		<pubDate>Thu, 19 Jan 2012 06:54:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.gayadesign.com/?p=489#comment-120225</guid>
		<description>My website home page has a lot of JS and CSS to load, about 800k. I plan to produce a new home page with just text. I would like, while people are reading the text, to preload all the JS and CSS so that when they click on a link to the rest of the site, all are already loaded. Can I do this with is solution?

Regards and thanks for a great idea.

Drachsi</description>
		<content:encoded><![CDATA[<p>My website home page has a lot of JS and CSS to load, about 800k. I plan to produce a new home page with just text. I would like, while people are reading the text, to preload all the JS and CSS so that when they click on a link to the rest of the site, all are already loaded. Can I do this with is solution?</p>
<p>Regards and thanks for a great idea.</p>
<p>Drachsi</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Step Ladders</title>
		<link>http://www.gayadesign.com/diy/queryloader-preload-your-website-in-style/comment-page-12/#comment-119973</link>
		<dc:creator>Step Ladders</dc:creator>
		<pubDate>Wed, 18 Jan 2012 16:05:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.gayadesign.com/?p=489#comment-119973</guid>
		<description>If you notice more and more of them are being Pre loaded.</description>
		<content:encoded><![CDATA[<p>If you notice more and more of them are being Pre loaded.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mably</title>
		<link>http://www.gayadesign.com/diy/queryloader-preload-your-website-in-style/comment-page-12/#comment-117558</link>
		<dc:creator>Mably</dc:creator>
		<pubDate>Thu, 12 Jan 2012 20:35:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.gayadesign.com/?p=489#comment-117558</guid>
		<description>Gaya, any trick to do so we can see our broken link images? :)

Awesome loader and keep up the good work!</description>
		<content:encoded><![CDATA[<p>Gaya, any trick to do so we can see our broken link images? :)</p>
<p>Awesome loader and keep up the good work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Moore</title>
		<link>http://www.gayadesign.com/diy/queryloader-preload-your-website-in-style/comment-page-12/#comment-114104</link>
		<dc:creator>David Moore</dc:creator>
		<pubDate>Wed, 04 Jan 2012 16:32:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.gayadesign.com/?p=489#comment-114104</guid>
		<description>This is very nice idea! This will help a lot on preloading images on you website in a faster way.</description>
		<content:encoded><![CDATA[<p>This is very nice idea! This will help a lot on preloading images on you website in a faster way.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

