<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jorge Pedret &#187; reminder</title>
	<atom:link href="http://jorgepedret.com/tag/reminder/feed/" rel="self" type="application/rss+xml" />
	<link>http://jorgepedret.com</link>
	<description>Freelance Web Developer + Front End Designer</description>
	<lastBuildDate>Wed, 25 Jan 2012 16:43:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Use jQuery to select child element</title>
		<link>http://jorgepedret.com/web-development/use-jquery-to-select-child-element/</link>
		<comments>http://jorgepedret.com/web-development/use-jquery-to-select-child-element/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 01:12:30 +0000</pubDate>
		<dc:creator>Jorge Pedret</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[reminder]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://jorgepedret.com/blog/?p=45</guid>
		<description><![CDATA[Suppose you have the following structure: This code will let you access the child elements of &#8216;.section&#8217; when you use an &#8216;each&#8217; function I hope this helps someone, I kept forgetting how to do this, so this is mostly a reminder for myself. Source: http://stackoverflow.com/questions/306583/jquery-this-selector-and-children/306904#306904]]></description>
			<content:encoded><![CDATA[<p>Suppose you have the following structure:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;div class=&quot;section&quot;&gt;
	&lt;h3 class=&quot;title&quot;&gt;Title&lt;/h3&gt;
	&lt;span class=&quot;description&quot;&gt;...&lt;/span&gt;
&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
	&lt;h3 class=&quot;title&quot;&gt;Title&lt;/h3&gt;
	&lt;span class=&quot;description&quot;&gt;...&lt;/span&gt;
&lt;/div&gt;
</pre>
<p>This code will let you access the child elements of &#8216;.section&#8217; when you use an &#8216;each&#8217; function</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;&gt;
$(function(){
	$('.section').each(function(i,element){
		$('description',this).fadeOut(100).fadeIn(100).fadeOut(100).fadeIn(100);
	});
});
&lt;/script&gt;
</pre>
<p>I hope this helps someone, I kept forgetting how to do this, so this is mostly a reminder for myself.<br />
Source: http://stackoverflow.com/questions/306583/jquery-this-selector-and-children/306904#306904</p>
]]></content:encoded>
			<wfw:commentRss>http://jorgepedret.com/web-development/use-jquery-to-select-child-element/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

