<?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: Quick Tip: Delay Page Loading with jQuery</title>
	<atom:link href="http://curtishenson.com/quick-tip-delay-page-loading-with-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://curtishenson.com/version7/quick-tip-delay-page-loading-with-jquery/</link>
	<description>Freelance Web Designer and Wordpress Guru</description>
	<lastBuildDate>Mon, 27 Sep 2010 12:59:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Curtis Henson</title>
		<link>http://curtishenson.com/version7/quick-tip-delay-page-loading-with-jquery/comment-page-1/#comment-2855</link>
		<dc:creator>Curtis Henson</dc:creator>
		<pubDate>Wed, 22 Sep 2010 15:54:16 +0000</pubDate>
		<guid isPermaLink="false">http://curtishenson.com/?p=521#comment-2855</guid>
		<description>1. You could do 
&lt;code&gt;jQuery(document).ready(function($) { //$code });&lt;/code&gt; if you wanted to use the $ sign.

2. Single quotes shouldn&#039;t matter, have no clue about that. Is that the same with any of your jQuery code?

3. You might be able to do &lt;code&gt;setTimeout(function(){window.location = toLoad}, 700)&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>1. You could do<br />
<code>jQuery(document).ready(function($) { //$code });</code> if you wanted to use the $ sign.</p>
<p>2. Single quotes shouldn&#8217;t matter, have no clue about that. Is that the same with any of your jQuery code?</p>
<p>3. You might be able to do <code>setTimeout(function(){window.location = toLoad}, 700)</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis</title>
		<link>http://curtishenson.com/version7/quick-tip-delay-page-loading-with-jquery/comment-page-1/#comment-2854</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Wed, 22 Sep 2010 14:34:40 +0000</pubDate>
		<guid isPermaLink="false">http://curtishenson.com/?p=521#comment-2854</guid>
		<description>Ok. I found 3 thinks :)</description>
		<content:encoded><![CDATA[<p>Ok. I found 3 thinks :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis</title>
		<link>http://curtishenson.com/version7/quick-tip-delay-page-loading-with-jquery/comment-page-1/#comment-2853</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Wed, 22 Sep 2010 14:26:07 +0000</pubDate>
		<guid isPermaLink="false">http://curtishenson.com/?p=521#comment-2853</guid>
		<description>I struggled with this and found 2 issues using Safari 4.0.5 and wordpress.

1) I need to use JQuery instead of $
2) I need to use &quot; instead of &#039;. (&#039;#link&#039;) is not recognized while (&quot;#link&quot;) does.
3) if using setTimeout, the var toLoad; has to be global rather than inside the jQuery declaration.</description>
		<content:encoded><![CDATA[<p>I struggled with this and found 2 issues using Safari 4.0.5 and wordpress.</p>
<p>1) I need to use JQuery instead of $<br />
2) I need to use &#8221; instead of &#8216;. (&#8216;#link&#8217;) is not recognized while (&#8220;#link&#8221;) does.<br />
3) if using setTimeout, the var toLoad; has to be global rather than inside the jQuery declaration.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Curtis Henson</title>
		<link>http://curtishenson.com/version7/quick-tip-delay-page-loading-with-jquery/comment-page-1/#comment-2810</link>
		<dc:creator>Curtis Henson</dc:creator>
		<pubDate>Mon, 14 Jun 2010 16:38:11 +0000</pubDate>
		<guid isPermaLink="false">http://curtishenson.com/?p=521#comment-2810</guid>
		<description>You aren&#039;t loading the &lt;a href=&quot;http://www.evanbot.com/article/jquery-delay-plugin/4&quot; rel=&quot;nofollow&quot;&gt;Delay plugin&lt;/a&gt;, this is confusing because jQuery now has a delay function but it&#039;s different. 

If the delay plugin doesn&#039;t work replace that bit of code with:
&lt;code&gt;
setTimeout(&quot;window.location = toLoad&quot; , 700);
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>You aren&#8217;t loading the <a href="http://www.evanbot.com/article/jquery-delay-plugin/4" rel="nofollow">Delay plugin</a>, this is confusing because jQuery now has a delay function but it&#8217;s different. </p>
<p>If the delay plugin doesn&#8217;t work replace that bit of code with:<br />
<code><br />
setTimeout("window.location = toLoad" , 700);<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Awais Muzaffar</title>
		<link>http://curtishenson.com/version7/quick-tip-delay-page-loading-with-jquery/comment-page-1/#comment-2809</link>
		<dc:creator>Awais Muzaffar</dc:creator>
		<pubDate>Mon, 14 Jun 2010 09:31:48 +0000</pubDate>
		<guid isPermaLink="false">http://curtishenson.com/?p=521#comment-2809</guid>
		<description>You can view my test site on:
http://www.awais-muzaffar.co.uk/test/index.php

The animation kind of works now, but when you click on on menu link the new page loads instantly instead of waiting for the animation to end. Check out my link you will see what I  mean.</description>
		<content:encoded><![CDATA[<p>You can view my test site on:<br />
<a href="http://www.awais-muzaffar.co.uk/test/index.php" rel="nofollow">http://www.awais-muzaffar.co.uk/test/index.php</a></p>
<p>The animation kind of works now, but when you click on on menu link the new page loads instantly instead of waiting for the animation to end. Check out my link you will see what I  mean.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Awais Muzaffar</title>
		<link>http://curtishenson.com/version7/quick-tip-delay-page-loading-with-jquery/comment-page-1/#comment-2808</link>
		<dc:creator>Awais Muzaffar</dc:creator>
		<pubDate>Mon, 14 Jun 2010 09:04:20 +0000</pubDate>
		<guid isPermaLink="false">http://curtishenson.com/?p=521#comment-2808</guid>
		<description>I am doing exactly that but it&#039;s not working :-(</description>
		<content:encoded><![CDATA[<p>I am doing exactly that but it&#8217;s not working :-(</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Curtis Henson</title>
		<link>http://curtishenson.com/version7/quick-tip-delay-page-loading-with-jquery/comment-page-1/#comment-2805</link>
		<dc:creator>Curtis Henson</dc:creator>
		<pubDate>Sat, 12 Jun 2010 17:15:29 +0000</pubDate>
		<guid isPermaLink="false">http://curtishenson.com/?p=521#comment-2805</guid>
		<description>Do you get any errors in the console? Are you loading the jQuery library and wrapping the code in: 
&lt;code&gt;
$(document).ready(function() {
   // put all your jQuery goodness in here.
 });
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Do you get any errors in the console? Are you loading the jQuery library and wrapping the code in:<br />
<code><br />
$(document).ready(function() {<br />
   // put all your jQuery goodness in here.<br />
 });<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Awais Muzaffar</title>
		<link>http://curtishenson.com/version7/quick-tip-delay-page-loading-with-jquery/comment-page-1/#comment-2804</link>
		<dc:creator>Awais Muzaffar</dc:creator>
		<pubDate>Sat, 12 Jun 2010 11:00:05 +0000</pubDate>
		<guid isPermaLink="false">http://curtishenson.com/?p=521#comment-2804</guid>
		<description>Hey guys not working for me: This is my code: The pages change instantly and the animation does not work:

		$(&quot;#nav ul li a&quot;).click(function(event){

			var toLoad = $(this).attr(&#039;href&#039;);  
			var selectedLink = $(this);
			var linkPosition = selectedLink.position();
			var selectedLinkLeft = linkPosition.left;
			$(&quot;.circle&quot;).animate( {&quot;left&quot;: + selectedLinkLeft}, &quot;100&quot; );
	
			$(this).delay(900, function(){ window.location = toLoad; });  
			return false;

});</description>
		<content:encoded><![CDATA[<p>Hey guys not working for me: This is my code: The pages change instantly and the animation does not work:</p>
<p>		$(&#8220;#nav ul li a&#8221;).click(function(event){</p>
<p>			var toLoad = $(this).attr(&#8216;href&#8217;);<br />
			var selectedLink = $(this);<br />
			var linkPosition = selectedLink.position();<br />
			var selectedLinkLeft = linkPosition.left;<br />
			$(&#8220;.circle&#8221;).animate( {&#8220;left&#8221;: + selectedLinkLeft}, &#8220;100&#8243; );</p>
<p>			$(this).delay(900, function(){ window.location = toLoad; });<br />
			return false;</p>
<p>});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Curtis Henson</title>
		<link>http://curtishenson.com/version7/quick-tip-delay-page-loading-with-jquery/comment-page-1/#comment-2762</link>
		<dc:creator>Curtis Henson</dc:creator>
		<pubDate>Fri, 19 Mar 2010 17:36:57 +0000</pubDate>
		<guid isPermaLink="false">http://curtishenson.com/?p=521#comment-2762</guid>
		<description>The delay plugin wrapped setTimeout() so I could chain it like other jQuery methods. Looks like the delay plugin uses a timer now though.</description>
		<content:encoded><![CDATA[<p>The delay plugin wrapped setTimeout() so I could chain it like other jQuery methods. Looks like the delay plugin uses a timer now though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nefi</title>
		<link>http://curtishenson.com/version7/quick-tip-delay-page-loading-with-jquery/comment-page-1/#comment-2761</link>
		<dc:creator>nefi</dc:creator>
		<pubDate>Fri, 19 Mar 2010 06:57:44 +0000</pubDate>
		<guid isPermaLink="false">http://curtishenson.com/?p=521#comment-2761</guid>
		<description>any reason you for not use setTimeout() function?</description>
		<content:encoded><![CDATA[<p>any reason you for not use setTimeout() function?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

