<?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: Effect Delay Trick</title>
	<atom:link href="http://www.learningjquery.com/2007/01/effect-delay-trick/feed" rel="self" type="application/rss+xml" />
	<link>http://www.learningjquery.com/2007/01/effect-delay-trick</link>
	<description>Tips, techniques, and tutorials for the jQuery JavaScript library</description>
	<lastBuildDate>Fri, 12 Mar 2010 06:30:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jutas</title>
		<link>http://www.learningjquery.com/2007/01/effect-delay-trick/comment-page-1#comment-79767</link>
		<dc:creator>Jutas</dc:creator>
		<pubDate>Tue, 02 Mar 2010 23:27:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2007/01/effect-delay-trick#comment-79767</guid>
		<description>That&#039;s pretty easy and short! Thanks!</description>
		<content:encoded><![CDATA[<p>That&#8217;s pretty easy and short! Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Florian</title>
		<link>http://www.learningjquery.com/2007/01/effect-delay-trick/comment-page-1#comment-79475</link>
		<dc:creator>Florian</dc:creator>
		<pubDate>Thu, 07 Jan 2010 17:09:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2007/01/effect-delay-trick#comment-79475</guid>
		<description>Hey, I need that so often, it&#039;s great!</description>
		<content:encoded><![CDATA[<p>Hey, I need that so often, it&#8217;s great!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anirniq</title>
		<link>http://www.learningjquery.com/2007/01/effect-delay-trick/comment-page-1#comment-79448</link>
		<dc:creator>Anirniq</dc:creator>
		<pubDate>Thu, 31 Dec 2009 13:33:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2007/01/effect-delay-trick#comment-79448</guid>
		<description>Hi. I always made like so :

&lt;code&gt;.fadeIn(&quot;medium&quot;, function() { setTimeout(&quot;$j(&#039;#comwarning&#039;).fadeOut(&#039;slow&#039;)&quot;, 3000) } );&lt;/code&gt;

A little less jQuery-likely, but contained in one line :)

See you</description>
		<content:encoded><![CDATA[<p>Hi. I always made like so :</p>
<p><code>.fadeIn("medium", function() { setTimeout("$j('#comwarning').fadeOut('slow')", 3000) } );</code></p>
<p>A little less jQuery-likely, but contained in one line :)</p>
<p>See you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tobz</title>
		<link>http://www.learningjquery.com/2007/01/effect-delay-trick/comment-page-1#comment-79100</link>
		<dc:creator>Tobz</dc:creator>
		<pubDate>Fri, 23 Oct 2009 10:13:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2007/01/effect-delay-trick#comment-79100</guid>
		<description>This doesn&#039;t seem to work in IE8, I had to put the tag below in:
&lt;code&gt;&lt;META HTTP-EQUIV=&quot;X-UA-Compatible&quot; CONTENT=&quot;IE=7&quot;&gt;&lt;/code&gt;

Is there a fix? Really like the code, thank you...</description>
		<content:encoded><![CDATA[<p>This doesn&#8217;t seem to work in IE8, I had to put the tag below in:<br />
<code>&lt;META HTTP-EQUIV="X-UA-Compatible" CONTENT="IE=7"&gt;</code></p>
<p>Is there a fix? Really like the code, thank you&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Diana</title>
		<link>http://www.learningjquery.com/2007/01/effect-delay-trick/comment-page-1#comment-79037</link>
		<dc:creator>Diana</dc:creator>
		<pubDate>Mon, 12 Oct 2009 21:43:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2007/01/effect-delay-trick#comment-79037</guid>
		<description>great example and explanation.

I&#039;m adapting this as a way to prevent doubleclicking a submit button, without locking down the button permanently, because we have validation on the form, so it may need to be resubmitted.
&lt;pre&gt;&lt;code&gt;
$(document).ready(function() {
		$(&#039;:submit&#039;).click(function() {
			$original = $(this).val();
			$(this).val(&#039;Saving, please wait...&#039;)
			.attr(&quot;disabled&quot;,&quot;disabled&quot;)
			.fadeIn(&#039;slow&#039;)
			.animate({opacity: 0.4}, 4000)
			.fadeIn(&#039;slow&#039;, function() {
				$(this).val($original).removeAttr(&quot;disabled&quot;).animate({opacity: 1}, 2000)		
			});
		});
});
&lt;/code&gt;&lt;/pre&gt;

my problem is that it&#039;s conflicting with the Jquery validation plugin: prevents it from showing its error spans.</description>
		<content:encoded><![CDATA[<p>great example and explanation.</p>
<p>I&#8217;m adapting this as a way to prevent doubleclicking a submit button, without locking down the button permanently, because we have validation on the form, so it may need to be resubmitted.</p>
<pre><code>
$(document).ready(function() {
		$(':submit').click(function() {
			$original = $(this).val();
			$(this).val('Saving, please wait...')
			.attr("disabled","disabled")
			.fadeIn('slow')
			.animate({opacity: 0.4}, 4000)
			.fadeIn('slow', function() {
				$(this).val($original).removeAttr("disabled").animate({opacity: 1}, 2000)
			});
		});
});
</code></pre>
<p>my problem is that it&#8217;s conflicting with the Jquery validation plugin: prevents it from showing its error spans.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://www.learningjquery.com/2007/01/effect-delay-trick/comment-page-1#comment-78502</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Wed, 02 Sep 2009 23:58:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2007/01/effect-delay-trick#comment-78502</guid>
		<description>&lt;code&gt;$(&quot;thing&quot;)fadeTo(&quot;slow&quot;,1,function(){$(this).css(&quot;color&quot;,&quot;#333&quot;)});&lt;/code&gt;

that&#039;s how i got around the timer problem, just fade to full opacity and then a callback for whatever you want.</description>
		<content:encoded><![CDATA[<p><code>$("thing")fadeTo("slow",1,function(){$(this).css("color","#333")});</code></p>
<p>that&#8217;s how i got around the timer problem, just fade to full opacity and then a callback for whatever you want.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Simon</title>
		<link>http://www.learningjquery.com/2007/01/effect-delay-trick/comment-page-1#comment-78332</link>
		<dc:creator>Mark Simon</dc:creator>
		<pubDate>Fri, 28 Aug 2009 00:02:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2007/01/effect-delay-trick#comment-78332</guid>
		<description>....and.... perfectly explained</description>
		<content:encoded><![CDATA[<p>&#8230;.and&#8230;. perfectly explained</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alberto</title>
		<link>http://www.learningjquery.com/2007/01/effect-delay-trick/comment-page-1#comment-78315</link>
		<dc:creator>Alberto</dc:creator>
		<pubDate>Thu, 27 Aug 2009 08:47:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2007/01/effect-delay-trick#comment-78315</guid>
		<description>Wow! A simple solution, great workaround ;)</description>
		<content:encoded><![CDATA[<p>Wow! A simple solution, great workaround ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://www.learningjquery.com/2007/01/effect-delay-trick/comment-page-1#comment-77909</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Sat, 25 Jul 2009 16:40:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2007/01/effect-delay-trick#comment-77909</guid>
		<description>Great article! I&#039;ve just added a similar thing to one of my recent projects using the uploadify plugin.</description>
		<content:encoded><![CDATA[<p>Great article! I&#8217;ve just added a similar thing to one of my recent projects using the uploadify plugin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jamie Goodwin</title>
		<link>http://www.learningjquery.com/2007/01/effect-delay-trick/comment-page-1#comment-77899</link>
		<dc:creator>Jamie Goodwin</dc:creator>
		<pubDate>Wed, 22 Jul 2009 08:33:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2007/01/effect-delay-trick#comment-77899</guid>
		<description>Fantastic work. I&#039;ve just been fiddling about with jQuery trying to get a &#039;border-top&#039; on a menu to slide across as you hover, which I&#039;ve finally managed to do. This worked wonders when I wanted to slightly delay the return to the original menu item!
Thanks a million!
Jamie</description>
		<content:encoded><![CDATA[<p>Fantastic work. I&#8217;ve just been fiddling about with jQuery trying to get a &#8216;border-top&#8217; on a menu to slide across as you hover, which I&#8217;ve finally managed to do. This worked wonders when I wanted to slightly delay the return to the original menu item!<br />
Thanks a million!<br />
Jamie</p>
]]></content:encoded>
	</item>
</channel>
</rss>
