<?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: Animating Table Rows with jQuery</title>
	<atom:link href="http://thefrontiergroup.com.au/blog/2008/12/animating-table-rows-with-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://thefrontiergroup.com.au/blog/2008/12/animating-table-rows-with-jquery/</link>
	<description>Your peek inside the collective mind of The Frontier Group</description>
	<lastBuildDate>Wed, 21 Jul 2010 07:16:08 +0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Aaron</title>
		<link>http://thefrontiergroup.com.au/blog/2008/12/animating-table-rows-with-jquery/comment-page-1/#comment-1602</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Tue, 20 Jul 2010 01:00:44 +0000</pubDate>
		<guid isPermaLink="false">http://thefrontiergroup.com.au/blog/?p=220#comment-1602</guid>
		<description>@GrizzlyNetch : Yeah, it looks like you&#039;re right. Not sure why I didn&#039;t spot that earlier. It would&#039;ve probably shown up in perf fixes. Thanks :)</description>
		<content:encoded><![CDATA[<p>@GrizzlyNetch : Yeah, it looks like you&#8217;re right. Not sure why I didn&#8217;t spot that earlier. It would&#8217;ve probably shown up in perf fixes. Thanks :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: GrizzlyNetch</title>
		<link>http://thefrontiergroup.com.au/blog/2008/12/animating-table-rows-with-jquery/comment-page-1/#comment-1591</link>
		<dc:creator>GrizzlyNetch</dc:creator>
		<pubDate>Mon, 19 Jul 2010 00:53:31 +0000</pubDate>
		<guid isPermaLink="false">http://thefrontiergroup.com.au/blog/?p=220#comment-1591</guid>
		<description>Sorry, I&#039;ve pasted the wrong code:

tr.children(’td’).wrapInner(&#039;(div)&#039;);
tr.children(’td’).children(’div’).slideUp(’normal’,function(){tr.remove()});

...i don&#039;t know how to insert tags/code, so replace  ( and ) by &amp;lt and &amp;gt</description>
		<content:encoded><![CDATA[<p>Sorry, I&#8217;ve pasted the wrong code:</p>
<p>tr.children(’td’).wrapInner(&#8217;(div)&#8217;);<br />
tr.children(’td’).children(’div’).slideUp(’normal’,function(){tr.remove()});</p>
<p>&#8230;i don&#8217;t know how to insert tags/code, so replace  ( and ) by &amp;lt and &amp;gt</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: GrizzlyNetch</title>
		<link>http://thefrontiergroup.com.au/blog/2008/12/animating-table-rows-with-jquery/comment-page-1/#comment-1590</link>
		<dc:creator>GrizzlyNetch</dc:creator>
		<pubDate>Mon, 19 Jul 2010 00:47:34 +0000</pubDate>
		<guid isPermaLink="false">http://thefrontiergroup.com.au/blog/?p=220#comment-1590</guid>
		<description>Hi, i know that it&#039;s an old topic, but i thing, that your code is not &quot;correct&quot;. You innerwrap content of every td, slideUp the div and after this You call el.remove(). So i think, that el.remove() is called several times (exactly as the number of tds in tr). Here&#039;s my solution for this:

tr.children(&#039;td&#039;).wrapInner(&#039;&#039;).wrapInner(&#039;&#039;);
tr.children(&#039;td&#039;).children(&#039;div&#039;).slideUp(&#039;normal&#039;,function(){tr.remove()});

I hope it&#039;s correct:)</description>
		<content:encoded><![CDATA[<p>Hi, i know that it&#8217;s an old topic, but i thing, that your code is not &#8220;correct&#8221;. You innerwrap content of every td, slideUp the div and after this You call el.remove(). So i think, that el.remove() is called several times (exactly as the number of tds in tr). Here&#8217;s my solution for this:</p>
<p>tr.children(&#8217;td&#8217;).wrapInner(&#8221;).wrapInner(&#8221;);<br />
tr.children(&#8217;td&#8217;).children(&#8217;div&#8217;).slideUp(&#8217;normal&#8217;,function(){tr.remove()});</p>
<p>I hope it&#8217;s correct:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tino</title>
		<link>http://thefrontiergroup.com.au/blog/2008/12/animating-table-rows-with-jquery/comment-page-1/#comment-310</link>
		<dc:creator>tino</dc:creator>
		<pubDate>Wed, 05 Aug 2009 07:38:09 +0000</pubDate>
		<guid isPermaLink="false">http://thefrontiergroup.com.au/blog/?p=220#comment-310</guid>
		<description>Thanks. Works great until you add div and input boxes etc. in your cell.
For some reason, it stops the slideUp from working nicely.

Tino</description>
		<content:encoded><![CDATA[<p>Thanks. Works great until you add div and input boxes etc. in your cell.<br />
For some reason, it stops the slideUp from working nicely.</p>
<p>Tino</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aaron</title>
		<link>http://thefrontiergroup.com.au/blog/2008/12/animating-table-rows-with-jquery/comment-page-1/#comment-126</link>
		<dc:creator>aaron</dc:creator>
		<pubDate>Thu, 08 Jan 2009 11:44:57 +0000</pubDate>
		<guid isPermaLink="false">http://thefrontiergroup.com.au/blog/?p=220#comment-126</guid>
		<description>We&#039;re currently procuring a domain on which to put demo code that may be required in situations such as this. When that&#039;s done I&#039;ll make sure to put something up and update the blog.</description>
		<content:encoded><![CDATA[<p>We&#8217;re currently procuring a domain on which to put demo code that may be required in situations such as this. When that&#8217;s done I&#8217;ll make sure to put something up and update the blog.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://thefrontiergroup.com.au/blog/2008/12/animating-table-rows-with-jquery/comment-page-1/#comment-123</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Tue, 06 Jan 2009 01:43:03 +0000</pubDate>
		<guid isPermaLink="false">http://thefrontiergroup.com.au/blog/?p=220#comment-123</guid>
		<description>Can you post a simple demo of this?

Daniel</description>
		<content:encoded><![CDATA[<p>Can you post a simple demo of this?</p>
<p>Daniel</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aaron</title>
		<link>http://thefrontiergroup.com.au/blog/2008/12/animating-table-rows-with-jquery/comment-page-1/#comment-116</link>
		<dc:creator>aaron</dc:creator>
		<pubDate>Tue, 23 Dec 2008 01:36:46 +0000</pubDate>
		<guid isPermaLink="false">http://thefrontiergroup.com.au/blog/?p=220#comment-116</guid>
		<description>Please use a div tag in the wrapInner() call. Unfortunately I couldn&#039;t put the div tag into my code and have it display correctly. 

&lt;code&gt;
...wrapInner(&#039;&lt; div /&gt;&#039;)...
&lt;/code&gt;

&lt;a href=&quot;http://docs.jquery.com/Manipulation/wrapInner#html&quot; rel=&quot;nofollow&quot;&gt;wrapInner()&lt;/a&gt; is a native jQuery method</description>
		<content:encoded><![CDATA[<p>Please use a div tag in the wrapInner() call. Unfortunately I couldn&#8217;t put the div tag into my code and have it display correctly. </p>
<p><code><br />
...wrapInner('< div />')...<br />
</code></p>
<p><a href="http://docs.jquery.com/Manipulation/wrapInner#html" rel="nofollow">wrapInner()</a> is a native jQuery method</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bryan</title>
		<link>http://thefrontiergroup.com.au/blog/2008/12/animating-table-rows-with-jquery/comment-page-1/#comment-114</link>
		<dc:creator>Bryan</dc:creator>
		<pubDate>Mon, 22 Dec 2008 17:46:41 +0000</pubDate>
		<guid isPermaLink="false">http://thefrontiergroup.com.au/blog/?p=220#comment-114</guid>
		<description>wrapInner is an addon? or in jquery - I&#039;m getting errors</description>
		<content:encoded><![CDATA[<p>wrapInner is an addon? or in jquery &#8211; I&#8217;m getting errors</p>
]]></content:encoded>
	</item>
</channel>
</rss>
