<?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"
	>
<channel>
	<title>Comments for jh labs</title>
	<atom:link href="http://www.jhlabs.co.uk/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jhlabs.co.uk</link>
	<description>Blog of a web developer / designer living and working in Swansea, Wales</description>
	<pubDate>Thu, 11 Mar 2010 14:22:18 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>Comment on jQuery: Fade Out, Change Content, Fade Back In by admin</title>
		<link>http://www.jhlabs.co.uk/2008/07/jquery-function-fade-out-change-content-fade-back-in/#comment-5185</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 02 Nov 2009 03:39:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.jhlabs.co.uk/?p=11#comment-5185</guid>
		<description>William,

You might want to look at http://www.jhlabs.co.uk/2009/03/jquery-slide-show-fading-content-by-clicks/ and all you should have to do is change the click functionality to an if statement, regarding to if the timer has reached its ideal time, then display the next div, or in your case p tag.

Hope this helps,

Jon</description>
		<content:encoded><![CDATA[<p>William,</p>
<p>You might want to look at <a href="http://www.jhlabs.co.uk/2009/03/jquery-slide-show-fading-content-by-clicks/" rel="nofollow">http://www.jhlabs.co.uk/2009/03/jquery-slide-show-fading-content-by-clicks/</a> and all you should have to do is change the click functionality to an if statement, regarding to if the timer has reached its ideal time, then display the next div, or in your case p tag.</p>
<p>Hope this helps,</p>
<p>Jon</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery: Fade Out, Change Content, Fade Back In by Kalessin</title>
		<link>http://www.jhlabs.co.uk/2008/07/jquery-function-fade-out-change-content-fade-back-in/#comment-4452</link>
		<dc:creator>Kalessin</dc:creator>
		<pubDate>Thu, 20 Aug 2009 16:56:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.jhlabs.co.uk/?p=11#comment-4452</guid>
		<description>Thanks for that, it's the effect I was looking for... now I just need to find out how to modify the functionality :)

What I would like to do -- to make it accessible -- is to retrieve the content from several p tags and iterate through them on a timer. Your code is an excellent start, thank you! Can you help with the rest?

Thanks again.</description>
		<content:encoded><![CDATA[<p>Thanks for that, it&#8217;s the effect I was looking for&#8230; now I just need to find out how to modify the functionality <img src='http://www.jhlabs.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>What I would like to do &#8212; to make it accessible &#8212; is to retrieve the content from several p tags and iterate through them on a timer. Your code is an excellent start, thank you! Can you help with the rest?</p>
<p>Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery: Fade Out, Change Content, Fade Back In by my so-called blog &#187; links for 2009-05-13</title>
		<link>http://www.jhlabs.co.uk/2008/07/jquery-function-fade-out-change-content-fade-back-in/#comment-2181</link>
		<dc:creator>my so-called blog &#187; links for 2009-05-13</dc:creator>
		<pubDate>Thu, 14 May 2009 02:01:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.jhlabs.co.uk/?p=11#comment-2181</guid>
		<description>[...] jh labs » Blog Archive » jQuery: Fade Out, Change Content, Fade Back In a jQuery function which when a user clicks on a piece of text, the text fades out, then the original text is replaced with a new piece of text, after that the new text is faded in (tags: jquery javascript webdev) [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] jh labs » Blog Archive » jQuery: Fade Out, Change Content, Fade Back In a jQuery function which when a user clicks on a piece of text, the text fades out, then the original text is replaced with a new piece of text, after that the new text is faded in (tags: jquery javascript webdev) [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Slide Show Fading Content by Clicks by Ryan</title>
		<link>http://www.jhlabs.co.uk/2009/03/jquery-slide-show-fading-content-by-clicks/#comment-806</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Fri, 03 Apr 2009 18:27:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.jhlabs.co.uk/?p=25#comment-806</guid>
		<description>Once this reaches the end of the slideshow, I'd like to repeat it...How do I make that happen?

Any help would be VERY much appreciated!</description>
		<content:encoded><![CDATA[<p>Once this reaches the end of the slideshow, I&#8217;d like to repeat it&#8230;How do I make that happen?</p>
<p>Any help would be VERY much appreciated!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery: Fade Out, Change Content, Fade Back In by Scott</title>
		<link>http://www.jhlabs.co.uk/2008/07/jquery-function-fade-out-change-content-fade-back-in/#comment-602</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Fri, 20 Mar 2009 02:57:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.jhlabs.co.uk/?p=11#comment-602</guid>
		<description>Hey, any reason to not use callback for what you are trying to above?

Example:

$("div").fadeOut(1000, function () {
   //do what you want to do here then fade back in
   $("html").fadeIn(1000);
});</description>
		<content:encoded><![CDATA[<p>Hey, any reason to not use callback for what you are trying to above?</p>
<p>Example:</p>
<p>$(&#8221;div&#8221;).fadeOut(1000, function () {<br />
   //do what you want to do here then fade back in<br />
   $(&#8221;html&#8221;).fadeIn(1000);<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery: Fade Out, Change Content, Fade Back In by jh labs &#187; Blog Archive &#187; jQuery Slide Show Fading Content by Clicks</title>
		<link>http://www.jhlabs.co.uk/2008/07/jquery-function-fade-out-change-content-fade-back-in/#comment-598</link>
		<dc:creator>jh labs &#187; Blog Archive &#187; jQuery Slide Show Fading Content by Clicks</dc:creator>
		<pubDate>Thu, 19 Mar 2009 18:46:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.jhlabs.co.uk/?p=11#comment-598</guid>
		<description>[...] I wrote a script which would allow a user to click a piece of text, and it would fadeout the content and fade in a [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] I wrote a script which would allow a user to click a piece of text, and it would fadeout the content and fade in a [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery: Fade Out, Change Content, Fade Back In by Гносис</title>
		<link>http://www.jhlabs.co.uk/2008/07/jquery-function-fade-out-change-content-fade-back-in/#comment-317</link>
		<dc:creator>Гносис</dc:creator>
		<pubDate>Fri, 20 Feb 2009 10:38:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.jhlabs.co.uk/?p=11#comment-317</guid>
		<description>Thanks a lot!</description>
		<content:encoded><![CDATA[<p>Thanks a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery: Fade Out, Change Content, Fade Back In by admin</title>
		<link>http://www.jhlabs.co.uk/2008/07/jquery-function-fade-out-change-content-fade-back-in/#comment-285</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 03 Feb 2009 16:55:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.jhlabs.co.uk/?p=11#comment-285</guid>
		<description>Here is a quick example. You must note that these examples are not SEO friendly or accessible, they were made specifically to hide details from search engines.

A working copy of the code can be found &lt;a href="http://www.jhlabs.co.uk/wp-content/uploads/2009/02/jquery-fadeout-fadein-slides.html" rel="nofollow"&gt;here&lt;/a&gt;

Rather than changing the text dynamically in the javascript, i would recommend you instead show/hide divs dynamically. So rather than using the &lt;code&gt;append()&lt;/code&gt; function you instead use the. &lt;code&gt;show()&lt;code&gt; function.

Hoped that helped in some way.

Jon</description>
		<content:encoded><![CDATA[<p>Here is a quick example. You must note that these examples are not SEO friendly or accessible, they were made specifically to hide details from search engines.</p>
<p>A working copy of the code can be found <a href="http://www.jhlabs.co.uk/wp-content/uploads/2009/02/jquery-fadeout-fadein-slides.html" rel="nofollow">here</a></p>
<p>Rather than changing the text dynamically in the javascript, i would recommend you instead show/hide divs dynamically. So rather than using the <code>append()</code> function you instead use the. <code>show()</code><code> function.</p>
<p>Hoped that helped in some way.</p>
<p>Jon</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery: Fade Out, Change Content, Fade Back In by Adam</title>
		<link>http://www.jhlabs.co.uk/2008/07/jquery-function-fade-out-change-content-fade-back-in/#comment-280</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Mon, 02 Feb 2009 23:21:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.jhlabs.co.uk/?p=11#comment-280</guid>
		<description>Hi, 

I've got this working, after a day searching for how to do this which led me from spry to jquery i was glad to find your page. Now I'd like to know how to make a third text section, so that when i click on the second section of that fades out leavig a third. Can you pint me in the right direction? I'd really appreciated it. 

Adam</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>I&#8217;ve got this working, after a day searching for how to do this which led me from spry to jquery i was glad to find your page. Now I&#8217;d like to know how to make a third text section, so that when i click on the second section of that fades out leavig a third. Can you pint me in the right direction? I&#8217;d really appreciated it. </p>
<p>Adam</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Catching the Crook Who Stole Your Laptop! by jh labs » Blog Archive » Catching the Crook Who Stole Your Laptop!</title>
		<link>http://www.jhlabs.co.uk/2009/01/catching-the-crook-who-stole-your-laptop/#comment-258</link>
		<dc:creator>jh labs » Blog Archive » Catching the Crook Who Stole Your Laptop!</dc:creator>
		<pubDate>Sat, 24 Jan 2009 19:39:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.jhlabs.co.uk/?p=23#comment-258</guid>
		<description>[...] here to read the rest:  jh labs » Blog Archive » Catching the Crook Who Stole Your Laptop!         Categories : Laptops, image, software  Tags : crook, development, jh-labs, photos, [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] here to read the rest:  jh labs » Blog Archive » Catching the Crook Who Stole Your Laptop!         Categories : Laptops, image, software  Tags : crook, development, jh-labs, photos, [&#8230;]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
