<?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: jQuery: Simulating a delay function between fade in/out effects</title>
	<atom:link href="http://p.karageorgakis.com/blog/jquery_simulating_a_delay_function_between_fade_in_out_effects/feed/" rel="self" type="application/rss+xml" />
	<link>http://p.karageorgakis.com/blog/jquery_simulating_a_delay_function_between_fade_in_out_effects/</link>
	<description></description>
	<lastBuildDate>Tue, 18 May 2010 13:18:20 -0700</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: blindsignals</title>
		<link>http://p.karageorgakis.com/blog/jquery_simulating_a_delay_function_between_fade_in_out_effects/comment-page-1/#comment-20960</link>
		<dc:creator>blindsignals</dc:creator>
		<pubDate>Tue, 18 May 2010 13:18:20 +0000</pubDate>
		<guid isPermaLink="false">http://dev.karageorgakis.com/article/jquery-simulating-a-delay-function-between-fade-inout-effects#comment-20960</guid>
		<description>@Jonathan

If you have the delay plugin you can do something like this

$(selector).delay(1000).fadeIn().delay(3000).fadeOut();

You can get the plugin at http://blindsignals.com/2009/07/jquery-delay/</description>
		<content:encoded><![CDATA[<p>@Jonathan</p>
<p>If you have the delay plugin you can do something like this</p>
<p>$(selector).delay(1000).fadeIn().delay(3000).fadeOut();</p>
<p>You can get the plugin at <a href="http://blindsignals.com/2009/07/jquery-delay/" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/blindsignals.com/2009/07/jquery-delay/?referer=');">http://blindsignals.com/2009/07/jquery-delay/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan</title>
		<link>http://p.karageorgakis.com/blog/jquery_simulating_a_delay_function_between_fade_in_out_effects/comment-page-1/#comment-20954</link>
		<dc:creator>Jonathan</dc:creator>
		<pubDate>Tue, 18 May 2010 12:37:11 +0000</pubDate>
		<guid isPermaLink="false">http://dev.karageorgakis.com/article/jquery-simulating-a-delay-function-between-fade-inout-effects#comment-20954</guid>
		<description>Guys im a little bit stuck.. I&#039;m pretty new to jQuery but the thing I want is this:

On pageload I have an element wich:

- wait 1 second
- fade in element
- wait 3 seconds
- fade out

How do I do this? Thank you in advanced!</description>
		<content:encoded><![CDATA[<p>Guys im a little bit stuck.. I&#8217;m pretty new to jQuery but the thing I want is this:</p>
<p>On pageload I have an element wich:</p>
<p>- wait 1 second<br />
- fade in element<br />
- wait 3 seconds<br />
- fade out</p>
<p>How do I do this? Thank you in advanced!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: KryptoniteDove</title>
		<link>http://p.karageorgakis.com/blog/jquery_simulating_a_delay_function_between_fade_in_out_effects/comment-page-1/#comment-17929</link>
		<dc:creator>KryptoniteDove</dc:creator>
		<pubDate>Mon, 29 Mar 2010 10:35:44 +0000</pubDate>
		<guid isPermaLink="false">http://dev.karageorgakis.com/article/jquery-simulating-a-delay-function-between-fade-inout-effects#comment-17929</guid>
		<description>Good article, but would have enjoyed more on chainability. You could also use javascript, you could also try

t = setTimeout(&quot;timedCount()&quot;,5000);

after the fadeIn call.</description>
		<content:encoded><![CDATA[<p>Good article, but would have enjoyed more on chainability. You could also use javascript, you could also try</p>
<p>t = setTimeout(&#8220;timedCount()&#8221;,5000);</p>
<p>after the fadeIn call.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gareth</title>
		<link>http://p.karageorgakis.com/blog/jquery_simulating_a_delay_function_between_fade_in_out_effects/comment-page-1/#comment-17165</link>
		<dc:creator>Gareth</dc:creator>
		<pubDate>Mon, 08 Mar 2010 17:38:19 +0000</pubDate>
		<guid isPermaLink="false">http://dev.karageorgakis.com/article/jquery-simulating-a-delay-function-between-fade-inout-effects#comment-17165</guid>
		<description>Thanks, thats really helpful, I find the default FadeOut effect in jQuery a little weak, this has resolved that.</description>
		<content:encoded><![CDATA[<p>Thanks, thats really helpful, I find the default FadeOut effect in jQuery a little weak, this has resolved that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Panos Karageorgakis</title>
		<link>http://p.karageorgakis.com/blog/jquery_simulating_a_delay_function_between_fade_in_out_effects/comment-page-1/#comment-10428</link>
		<dc:creator>Panos Karageorgakis</dc:creator>
		<pubDate>Tue, 21 Jul 2009 05:52:09 +0000</pubDate>
		<guid isPermaLink="false">http://dev.karageorgakis.com/article/jquery-simulating-a-delay-function-between-fade-inout-effects#comment-10428</guid>
		<description>Greg, that extra div is a widely used technique that renders text out of the screen while making it still available for screen readers (while display:none does not).</description>
		<content:encoded><![CDATA[<p>Greg, that extra div is a widely used technique that renders text out of the screen while making it still available for screen readers (while display:none does not).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg Solak</title>
		<link>http://p.karageorgakis.com/blog/jquery_simulating_a_delay_function_between_fade_in_out_effects/comment-page-1/#comment-10415</link>
		<dc:creator>Greg Solak</dc:creator>
		<pubDate>Tue, 21 Jul 2009 00:50:50 +0000</pubDate>
		<guid isPermaLink="false">http://dev.karageorgakis.com/article/jquery-simulating-a-delay-function-between-fade-inout-effects#comment-10415</guid>
		<description>It&#039;s a little counterproductive to add a hidden class that moves the div out of the viewport&#039;s window. You could simply do:

.hidden {
 display: none;
}

And then take the class out as you state...</description>
		<content:encoded><![CDATA[<p>It&#8217;s a little counterproductive to add a hidden class that moves the div out of the viewport&#8217;s window. You could simply do:</p>
<p>.hidden {<br />
 display: none;<br />
}</p>
<p>And then take the class out as you state&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chelfers</title>
		<link>http://p.karageorgakis.com/blog/jquery_simulating_a_delay_function_between_fade_in_out_effects/comment-page-1/#comment-10067</link>
		<dc:creator>chelfers</dc:creator>
		<pubDate>Wed, 08 Jul 2009 14:25:33 +0000</pubDate>
		<guid isPermaLink="false">http://dev.karageorgakis.com/article/jquery-simulating-a-delay-function-between-fade-inout-effects#comment-10067</guid>
		<description>Trying to figure out why my $().fadeOut() function has just stopped working for now reason and found your post

I created a delay function that can be chained not too long ago since I couldn&#039;t find anything but work arounds using other effects

http://blindsignals.com/index.php/2009/07/jquery-delay/

hope this helps someone out</description>
		<content:encoded><![CDATA[<p>Trying to figure out why my $().fadeOut() function has just stopped working for now reason and found your post</p>
<p>I created a delay function that can be chained not too long ago since I couldn&#8217;t find anything but work arounds using other effects</p>
<p><a href="http://blindsignals.com/index.php/2009/07/jquery-delay/" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/blindsignals.com/index.php/2009/07/jquery-delay/?referer=');">http://blindsignals.com/index.php/2009/07/jquery-delay/</a></p>
<p>hope this helps someone out</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://p.karageorgakis.com/blog/jquery_simulating_a_delay_function_between_fade_in_out_effects/comment-page-1/#comment-8493</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Wed, 03 Jun 2009 03:38:01 +0000</pubDate>
		<guid isPermaLink="false">http://dev.karageorgakis.com/article/jquery-simulating-a-delay-function-between-fade-inout-effects#comment-8493</guid>
		<description>save to bookmark)</description>
		<content:encoded><![CDATA[<p>save to bookmark)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wilman</title>
		<link>http://p.karageorgakis.com/blog/jquery_simulating_a_delay_function_between_fade_in_out_effects/comment-page-1/#comment-7675</link>
		<dc:creator>wilman</dc:creator>
		<pubDate>Thu, 14 May 2009 11:25:25 +0000</pubDate>
		<guid isPermaLink="false">http://dev.karageorgakis.com/article/jquery-simulating-a-delay-function-between-fade-inout-effects#comment-7675</guid>
		<description>Nice solution :) Thanks!</description>
		<content:encoded><![CDATA[<p>Nice solution <img src='http://p.karageorgakis.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron Schmidt</title>
		<link>http://p.karageorgakis.com/blog/jquery_simulating_a_delay_function_between_fade_in_out_effects/comment-page-1/#comment-6482</link>
		<dc:creator>Aaron Schmidt</dc:creator>
		<pubDate>Sun, 19 Apr 2009 07:12:04 +0000</pubDate>
		<guid isPermaLink="false">http://dev.karageorgakis.com/article/jquery-simulating-a-delay-function-between-fade-inout-effects#comment-6482</guid>
		<description>jQuery.fn.extend({
	delay : function(speed, callback) {
		var opacity = this.css(&#039;display&#039;) != &#039;none&#039; ? 1 : 0;
		return $(this).fadeTo(speed, opacity, callback);
	}
});

$(&quot;#foo&quot;).fadeIn(2000).delay(5000).fadeOut(2000);</description>
		<content:encoded><![CDATA[<p>jQuery.fn.extend({<br />
	delay : function(speed, callback) {<br />
		var opacity = this.css(&#8216;display&#8217;) != &#8216;none&#8217; ? 1 : 0;<br />
		return $(this).fadeTo(speed, opacity, callback);<br />
	}<br />
});</p>
<p>$(&#8220;#foo&#8221;).fadeIn(2000).delay(5000).fadeOut(2000);</p>
]]></content:encoded>
	</item>
</channel>
</rss>
