<?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: :nth-child() Selector</title>
	<atom:link href="http://api.jquery.com/nth-child-selector/feed/" rel="self" type="application/rss+xml" />
	<link>http://api.jquery.com/nth-child-selector/</link>
	<description>jQuery API Reference</description>
	<lastBuildDate>Fri, 19 Aug 2011 09:06:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: banningstuckey</title>
		<link>http://api.jquery.com/nth-child-selector/comment-page-1/#comment-8356</link>
		<dc:creator>banningstuckey</dc:creator>
		<pubDate>Sat, 15 Jan 2011 03:21:15 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=596#comment-8356</guid>
		<description>$(&#039;table#tableID &gt; tbody &gt; tr&#039;).each(function(index){&lt;br&gt;			console.log(index);&lt;br&gt;			$(&#039;table#tableID &gt; tbody &gt; tr:nth-child(&#039;+index+&#039;) &gt; td&#039;).each(function(index){&lt;br&gt;&lt;br&gt;kept breaking in Chrome and Safari... ended up it was the nth-child part breaking so i replaced it with :eq and it work.&lt;br&gt;&lt;br&gt;Just thought i&#039;d share in case anyone else out there has the same problem.</description>
		<content:encoded><![CDATA[<p>$(&#39;table#tableID &gt; tbody &gt; tr&#39;).each(function(index){<br />			console.log(index);<br />			$(&#39;table#tableID &gt; tbody &gt; tr:nth-child(&#39;+index+&#39;) &gt; td&#39;).each(function(index){</p>
<p>kept breaking in Chrome and Safari&#8230; ended up it was the nth-child part breaking so i replaced it with :eq and it work.</p>
<p>Just thought i&#39;d share in case anyone else out there has the same problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Atomikvibes</title>
		<link>http://api.jquery.com/nth-child-selector/comment-page-1/#comment-8323</link>
		<dc:creator>Atomikvibes</dc:creator>
		<pubDate>Thu, 13 Jan 2011 18:57:01 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=596#comment-8323</guid>
		<description>If you have this structure :&lt;br&gt;&lt;div class=&quot;test&quot;&gt;&lt;br&gt;&lt;select&gt;...&lt;/select&gt;&lt;select&gt;...&lt;/select&gt;&lt;select&gt;...&lt;/select&gt;&lt;select&gt;...&lt;/select&gt;&lt;br&gt;span...span&lt;br&gt;&lt;select&gt;...&lt;/select&gt;&lt;select&gt;...&lt;/select&gt;&lt;select&gt;...&lt;/select&gt;&lt;select&gt;...&lt;/select&gt;&lt;br&gt;&lt;/div&gt;&lt;br&gt;.....$(&quot;.test select&quot;).attr(&quot;disabled&quot;,&quot;disabled&quot;);&lt;br&gt;&lt;br&gt;I&#039;ve an error when i try to REactivate only the fisrt and fifth select box.&lt;br&gt;&lt;br&gt;$(&quot;.test select:nth-child(4n+1)&quot;).attr(&quot;disabled&quot;,false);&lt;br&gt;&lt;br&gt;Did you found this type of error cause by the &quot;span&quot; ???&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>If you have this structure :<br />&lt;div class=&#8221;test&#8221;&gt;<br />&lt;select&gt;&#8230;&lt;/select&gt;&lt;select&gt;&#8230;&lt;/select&gt;&lt;select&gt;&#8230;&lt;/select&gt;&lt;select&gt;&#8230;&lt;/select&gt;<br />span&#8230;span<br />&lt;select&gt;&#8230;&lt;/select&gt;&lt;select&gt;&#8230;&lt;/select&gt;&lt;select&gt;&#8230;&lt;/select&gt;&lt;select&gt;&#8230;&lt;/select&gt;<br />&lt;/div&gt;<br />&#8230;..$(&#8220;.test select&#8221;).attr(&#8220;disabled&#8221;,&#8221;disabled&#8221;);</p>
<p>I&#39;ve an error when i try to REactivate only the fisrt and fifth select box.</p>
<p>$(&#8220;.test select:nth-child(4n+1)&#8221;).attr(&#8220;disabled&#8221;,false);</p>
<p>Did you found this type of error cause by the &#8220;span&#8221; ???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Atomikvibes</title>
		<link>http://api.jquery.com/nth-child-selector/comment-page-1/#comment-8324</link>
		<dc:creator>Atomikvibes</dc:creator>
		<pubDate>Thu, 13 Jan 2011 18:54:33 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=596#comment-8324</guid>
		<description>If you have this structure :&lt;br&gt;&lt;div class=&quot;test&quot;&gt;&lt;br&gt;&lt;select&gt;...&lt;/select&gt;&lt;select&gt;...&lt;/select&gt;&lt;select&gt;...&lt;/select&gt;&lt;select&gt;...&lt;/select&gt;&lt;br&gt;&lt;span&gt;...&lt;/span&gt;&lt;br&gt;&lt;select&gt;...&lt;/select&gt;&lt;select&gt;...&lt;/select&gt;&lt;select&gt;...&lt;/select&gt;&lt;select&gt;...&lt;/select&gt;&lt;br&gt;&lt;/div&gt;&lt;br&gt;.....$(&quot;.test select&quot;).attr(&quot;disabled&quot;,&quot;disabled&quot;);&lt;br&gt;&lt;br&gt;I&#039;ve an error when i try to REactivate only the fisrt and fifth select box.&lt;br&gt;&lt;br&gt;$(&quot;.dhx_section_time select:nth-child(4n+1)&quot;).attr(&quot;disabled&quot;,false);&lt;br&gt;&lt;br&gt;Did you found this type of error cause by the &quot;span&quot;  ???&lt;br&gt;&lt;br&gt;&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>If you have this structure :<br />&lt;div class=&#8221;test&#8221;&gt;<br />&lt;select&gt;&#8230;&lt;/select&gt;&lt;select&gt;&#8230;&lt;/select&gt;&lt;select&gt;&#8230;&lt;/select&gt;&lt;select&gt;&#8230;&lt;/select&gt;<br /><span>&#8230;</span><br />&lt;select&gt;&#8230;&lt;/select&gt;&lt;select&gt;&#8230;&lt;/select&gt;&lt;select&gt;&#8230;&lt;/select&gt;&lt;select&gt;&#8230;&lt;/select&gt;<br />&lt;/div&gt;<br />&#8230;..$(&#8220;.test select&#8221;).attr(&#8220;disabled&#8221;,&#8221;disabled&#8221;);</p>
<p>I&#39;ve an error when i try to REactivate only the fisrt and fifth select box.</p>
<p>$(&#8220;.dhx_section_time select:nth-child(4n+1)&#8221;).attr(&#8220;disabled&#8221;,false);</p>
<p>Did you found this type of error cause by the &#8220;span&#8221;  ???</p>
<p></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leonardo Silveira</title>
		<link>http://api.jquery.com/nth-child-selector/comment-page-1/#comment-8010</link>
		<dc:creator>Leonardo Silveira</dc:creator>
		<pubDate>Thu, 30 Dec 2010 07:03:18 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=596#comment-8010</guid>
		<description>so, this thing works with $(&quot;#something&quot;).find(&quot;a:nth-child(2)&quot;) ? whould i try to use any other thing?&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>so, this thing works with $(&#8220;#something&#8221;).find(&#8220;a:nth-child(2)&#8221;) ? whould i try to use any other thing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leonardo Silveira</title>
		<link>http://api.jquery.com/nth-child-selector/comment-page-1/#comment-7837</link>
		<dc:creator>Leonardo Silveira</dc:creator>
		<pubDate>Wed, 29 Dec 2010 23:03:18 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=596#comment-7837</guid>
		<description>so, this thing works with $(&quot;#something&quot;).find(&quot;a:nth-child(2)&quot;) ? whould i try to use any other thing?&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>so, this thing works with $(&#8220;#something&#8221;).find(&#8220;a:nth-child(2)&#8221;) ? whould i try to use any other thing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: void</title>
		<link>http://api.jquery.com/nth-child-selector/comment-page-1/#comment-7678</link>
		<dc:creator>void</dc:creator>
		<pubDate>Mon, 20 Dec 2010 12:19:50 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=596#comment-7678</guid>
		<description>What would be the way to *correctly* achieve the same result as `:nth-child(-n+3)`? The current behavior gives weird results depending on the scenario.</description>
		<content:encoded><![CDATA[<p>What would be the way to *correctly* achieve the same result as `:nth-child(-n+3)`? The current behavior gives weird results depending on the scenario.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karl Swedberg</title>
		<link>http://api.jquery.com/nth-child-selector/comment-page-1/#comment-7002</link>
		<dc:creator>Karl Swedberg</dc:creator>
		<pubDate>Mon, 15 Nov 2010 13:43:36 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=596#comment-7002</guid>
		<description>Because it does the exact same thing as :eq, and :eq has always been documented.</description>
		<content:encoded><![CDATA[<p>Because it does the exact same thing as :eq, and :eq has always been documented.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy W</title>
		<link>http://api.jquery.com/nth-child-selector/comment-page-1/#comment-6991</link>
		<dc:creator>Andy W</dc:creator>
		<pubDate>Mon, 15 Nov 2010 06:52:22 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=596#comment-6991</guid>
		<description>Why do you want to phase out :nth?</description>
		<content:encoded><![CDATA[<p>Why do you want to phase out :nth?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karl Swedberg</title>
		<link>http://api.jquery.com/nth-child-selector/comment-page-1/#comment-6852</link>
		<dc:creator>Karl Swedberg</dc:creator>
		<pubDate>Sun, 07 Nov 2010 00:59:28 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=596#comment-6852</guid>
		<description>It does the exact same thing as the :eq selector: &lt;a href=&quot;http://api.jquery.com/eq-selector&quot; rel=&quot;nofollow&quot;&gt;http://api.jquery.com/eq-selector&lt;/a&gt;/. We don&#039;t document :nth, because we want people to use :eq so we can eventually phase out :nth.</description>
		<content:encoded><![CDATA[<p>It does the exact same thing as the :eq selector: <a href="http://api.jquery.com/eq-selector" rel="nofollow">http://api.jquery.com/eq-selector</a>/. We don&#39;t document :nth, because we want people to use :eq so we can eventually phase out :nth.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Benjiiiiii</title>
		<link>http://api.jquery.com/nth-child-selector/comment-page-1/#comment-6826</link>
		<dc:creator>Benjiiiiii</dc:creator>
		<pubDate>Fri, 05 Nov 2010 19:21:13 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=596#comment-6826</guid>
		<description>accidently i discover there is a :nth selector&lt;br&gt;Since i can&#039;t find it in the doc, could some one explain what it does?&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>accidently i discover there is a :nth selector<br />Since i can&#39;t find it in the doc, could some one explain what it does?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

