<?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: Irksome: Internet Explorer vs. JavaScript</title>
	<atom:link href="http://twoseven.co.nz/2007/07/16/irksome-internet-explorer-vs-javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://twoseven.co.nz/2007/07/16/irksome-internet-explorer-vs-javascript/</link>
	<description>...is Dan Willis blogging about web design and development, usability, standards and pretty much anything!</description>
	<lastBuildDate>Tue, 31 May 2011 01:13:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2-bleeding</generator>
	<item>
		<title>By: Dan</title>
		<link>http://twoseven.co.nz/2007/07/16/irksome-internet-explorer-vs-javascript/comment-page-1/#comment-10072</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Thu, 14 Feb 2008 03:31:16 +0000</pubDate>
		<guid isPermaLink="false">http://twoseven.co.nz/2007/07/16/irksome-internet-explorer-vs-javascript/#comment-10072</guid>
		<description>Hmm.

I&#039;ve never used HTMLTableRowElement before, but I did a quick google and it seems like all the HTMLTable... DOM2 classes are supported by IE4 and newer.

The only thing I can suggest based on your code, is that namedItem returns a  Node, whilst rowIndex is an attribute of HTMLTableRowElement.

I&#039;m not sure if that&#039;s what is causing the problem; I&#039;ll have to make up some sample code myself.

Let me know if you find a solution.</description>
		<content:encoded><![CDATA[<p>Hmm.</p>
<p>I&#8217;ve never used HTMLTableRowElement before, but I did a quick google and it seems like all the HTMLTable&#8230; DOM2 classes are supported by IE4 and newer.</p>
<p>The only thing I can suggest based on your code, is that namedItem returns a  Node, whilst rowIndex is an attribute of HTMLTableRowElement.</p>
<p>I&#8217;m not sure if that&#8217;s what is causing the problem; I&#8217;ll have to make up some sample code myself.</p>
<p>Let me know if you find a solution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maxim</title>
		<link>http://twoseven.co.nz/2007/07/16/irksome-internet-explorer-vs-javascript/comment-page-1/#comment-10068</link>
		<dc:creator>Maxim</dc:creator>
		<pubDate>Thu, 14 Feb 2008 02:29:09 +0000</pubDate>
		<guid isPermaLink="false">http://twoseven.co.nz/2007/07/16/irksome-internet-explorer-vs-javascript/#comment-10068</guid>
		<description>Hey man, nice work! Do you by any chance know of an IE equivalent for an HTMLTableRowElement&#039;s rowIndex property? This is what I&#039;m doing, and it works with FF:

var rows = gTableSection.rows;
var rowAttach = rows.namedItem(&quot;attach&quot;);

//determine rowIndex
var rowIndex = rowAttach.rowIndex;  // IE starts wining like a pussy here

var insertedRowRef = gTableSection.insertRow(rowIndex);

I know I could iterate through all table rows keep track of how many are there, and I&#039;ll have to do that unless there&#039;s a better way of finding an index of a HTMLTableRowElement.</description>
		<content:encoded><![CDATA[<p>Hey man, nice work! Do you by any chance know of an IE equivalent for an HTMLTableRowElement&#8217;s rowIndex property? This is what I&#8217;m doing, and it works with FF:</p>
<p>var rows = gTableSection.rows;<br />
var rowAttach = rows.namedItem(&#8220;attach&#8221;);</p>
<p>//determine rowIndex<br />
var rowIndex = rowAttach.rowIndex;  // IE starts wining like a pussy here</p>
<p>var insertedRowRef = gTableSection.insertRow(rowIndex);</p>
<p>I know I could iterate through all table rows keep track of how many are there, and I&#8217;ll have to do that unless there&#8217;s a better way of finding an index of a HTMLTableRowElement.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zirtoc</title>
		<link>http://twoseven.co.nz/2007/07/16/irksome-internet-explorer-vs-javascript/comment-page-1/#comment-3149</link>
		<dc:creator>zirtoc</dc:creator>
		<pubDate>Fri, 12 Oct 2007 22:22:03 +0000</pubDate>
		<guid isPermaLink="false">http://twoseven.co.nz/2007/07/16/irksome-internet-explorer-vs-javascript/#comment-3149</guid>
		<description>Awesome.  Truly awesome.  I have looked at probably 20 other solutions, and this one worked.  Microsoft&#039;s official example wouldn&#039;t run in Firefox!  This runs in both IE and FF.</description>
		<content:encoded><![CDATA[<p>Awesome.  Truly awesome.  I have looked at probably 20 other solutions, and this one worked.  Microsoft&#8217;s official example wouldn&#8217;t run in Firefox!  This runs in both IE and FF.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pray</title>
		<link>http://twoseven.co.nz/2007/07/16/irksome-internet-explorer-vs-javascript/comment-page-1/#comment-1374</link>
		<dc:creator>Pray</dc:creator>
		<pubDate>Fri, 10 Aug 2007 05:06:30 +0000</pubDate>
		<guid isPermaLink="false">http://twoseven.co.nz/2007/07/16/irksome-internet-explorer-vs-javascript/#comment-1374</guid>
		<description>This is heaven. You really helped me end the most frustrating moment in my life.

Thank youuu~ :D</description>
		<content:encoded><![CDATA[<p>This is heaven. You really helped me end the most frustrating moment in my life.</p>
<p>Thank youuu~ <img src='http://twoseven.co.nz/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://twoseven.co.nz/2007/07/16/irksome-internet-explorer-vs-javascript/comment-page-1/#comment-1054</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Mon, 16 Jul 2007 06:48:44 +0000</pubDate>
		<guid isPermaLink="false">http://twoseven.co.nz/2007/07/16/irksome-internet-explorer-vs-javascript/#comment-1054</guid>
		<description>Hmmm. Don&#039;t take this as gospel truth - it may still be completely wrong. All I know is that it works :)</description>
		<content:encoded><![CDATA[<p>Hmmm. Don&#8217;t take this as gospel truth &#8211; it may still be completely wrong. All I know is that it works <img src='http://twoseven.co.nz/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ludwig Wendzich</title>
		<link>http://twoseven.co.nz/2007/07/16/irksome-internet-explorer-vs-javascript/comment-page-1/#comment-1053</link>
		<dc:creator>Ludwig Wendzich</dc:creator>
		<pubDate>Mon, 16 Jul 2007 06:46:55 +0000</pubDate>
		<guid isPermaLink="false">http://twoseven.co.nz/2007/07/16/irksome-internet-explorer-vs-javascript/#comment-1053</guid>
		<description>You are the man :) 

I will try and see if I can get it working on NCEATracker.com. 

Thanks again!</description>
		<content:encoded><![CDATA[<p>You are the man <img src='http://twoseven.co.nz/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>I will try and see if I can get it working on NCEATracker.com. </p>
<p>Thanks again!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

