<?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 on: IE 7 DOM and JS Changelog</title>
	<atom:link href="http://erik.eae.net/archives/2006/04/26/23.23.02/feed/" rel="self" type="application/rss+xml" />
	<link>http://erik.eae.net/archives/2006/04/26/23.23.02/</link>
	<description>The Weblog of Erik Arvidsson</description>
	<pubDate>Thu, 28 Aug 2008 14:29:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: innerHTML &#187; Blog Archive &#187; JavaScript in IE7</title>
		<link>http://erik.eae.net/archives/2006/04/26/23.23.02/#comment-103140</link>
		<dc:creator>innerHTML &#187; Blog Archive &#187; JavaScript in IE7</dc:creator>
		<pubDate>Tue, 24 Jun 2008 22:06:07 +0000</pubDate>
		<guid isPermaLink="false">http://erik.eae.net/archives/2006/04/26/23.23.02/#comment-103140</guid>
		<description>[...] troubleshooting a bug in how IE7 was handling a regular expression, I found this list of the JavaScript changes the IE developers made between versions 6 and 7:  Begin Changelist [...]</description>
		<content:encoded><![CDATA[<p>[...] troubleshooting a bug in how IE7 was handling a regular expression, I found this list of the JavaScript changes the IE developers made between versions 6 and 7:  Begin Changelist [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sohbet</title>
		<link>http://erik.eae.net/archives/2006/04/26/23.23.02/#comment-103093</link>
		<dc:creator>sohbet</dc:creator>
		<pubDate>Sun, 27 Apr 2008 20:04:39 +0000</pubDate>
		<guid isPermaLink="false">http://erik.eae.net/archives/2006/04/26/23.23.02/#comment-103093</guid>
		<description>Erik Arvidsson zveřejnil novou verzi svého nástroje ExCanvas , který umožňuje používat metody objektu CANVAS i v Internet Exploreru</description>
		<content:encoded><![CDATA[<p>Erik Arvidsson zveřejnil novou verzi svého nástroje ExCanvas , který umožňuje používat metody objektu CANVAS i v Internet Exploreru</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erik Arvidsson</title>
		<link>http://erik.eae.net/archives/2006/04/26/23.23.02/#comment-103092</link>
		<dc:creator>Erik Arvidsson</dc:creator>
		<pubDate>Wed, 23 Apr 2008 16:55:06 +0000</pubDate>
		<guid isPermaLink="false">http://erik.eae.net/archives/2006/04/26/23.23.02/#comment-103092</guid>
		<description>Praveen:  Instead of using setAttribute you can use the relevant DOM properties.

textbox = document.createElement('input');
textbox.name = 'name';
textbox.id = 'name';
textbox.onclick = somefun;

This is also a lot more readable.</description>
		<content:encoded><![CDATA[<p>Praveen:  Instead of using setAttribute you can use the relevant DOM properties.</p>
<p>textbox = document.createElement(&#8217;input&#8217;);<br />
textbox.name = &#8216;name&#8217;;<br />
textbox.id = &#8216;name&#8217;;<br />
textbox.onclick = somefun;</p>
<p>This is also a lot more readable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Praveen</title>
		<link>http://erik.eae.net/archives/2006/04/26/23.23.02/#comment-103091</link>
		<dc:creator>Praveen</dc:creator>
		<pubDate>Wed, 23 Apr 2008 12:37:48 +0000</pubDate>
		<guid isPermaLink="false">http://erik.eae.net/archives/2006/04/26/23.23.02/#comment-103091</guid>
		<description>Hi ,
In IE 6 and IE 7, I am facing one problem.
One example i will explain.
I created one text through 
textbox  = document.createElement("input");
textbox.setAttribute("name","name");
textbox.setAttribute("id","name");

It will work fine.
But if added the following attribute it will affect.
textbox.setAttribute("onclick","somefun()");



But in Firefox it will work fine.

Is there any solution? I don't want to go for innerHTML.
Please let me know if anybody is having ideas about this.
Please let me know if innerHTML is the only solution to this.
It will save my time.
Thanks in advance.


Any help will be greatly appreciated.</description>
		<content:encoded><![CDATA[<p>Hi ,<br />
In IE 6 and IE 7, I am facing one problem.<br />
One example i will explain.<br />
I created one text through<br />
textbox  = document.createElement(&#8221;input&#8221;);<br />
textbox.setAttribute(&#8221;name&#8221;,&#8221;name&#8221;);<br />
textbox.setAttribute(&#8221;id&#8221;,&#8221;name&#8221;);</p>
<p>It will work fine.<br />
But if added the following attribute it will affect.<br />
textbox.setAttribute(&#8221;onclick&#8221;,&#8221;somefun()&#8221;);</p>
<p>But in Firefox it will work fine.</p>
<p>Is there any solution? I don&#8217;t want to go for innerHTML.<br />
Please let me know if anybody is having ideas about this.<br />
Please let me know if innerHTML is the only solution to this.<br />
It will save my time.<br />
Thanks in advance.</p>
<p>Any help will be greatly appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://erik.eae.net/archives/2006/04/26/23.23.02/#comment-102586</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Mon, 15 Oct 2007 21:01:01 +0000</pubDate>
		<guid isPermaLink="false">http://erik.eae.net/archives/2006/04/26/23.23.02/#comment-102586</guid>
		<description>@BatMan: No, there was no list, hence the purpose of the post.  It was merely to indicate that NO FEATURES or BUGS were added or fixed in IE7 in terms of JavaScript.

Sad, but very true.

(note some performance changes were made (e.g. mem leak fixes))</description>
		<content:encoded><![CDATA[<p>@BatMan: No, there was no list, hence the purpose of the post.  It was merely to indicate that NO FEATURES or BUGS were added or fixed in IE7 in terms of JavaScript.</p>
<p>Sad, but very true.</p>
<p>(note some performance changes were made (e.g. mem leak fixes))</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mel</title>
		<link>http://erik.eae.net/archives/2006/04/26/23.23.02/#comment-102273</link>
		<dc:creator>mel</dc:creator>
		<pubDate>Mon, 23 Jul 2007 18:16:32 +0000</pubDate>
		<guid isPermaLink="false">http://erik.eae.net/archives/2006/04/26/23.23.02/#comment-102273</guid>
		<description>Is this a joke?</description>
		<content:encoded><![CDATA[<p>Is this a joke?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nik</title>
		<link>http://erik.eae.net/archives/2006/04/26/23.23.02/#comment-102173</link>
		<dc:creator>Nik</dc:creator>
		<pubDate>Sun, 17 Jun 2007 21:53:09 +0000</pubDate>
		<guid isPermaLink="false">http://erik.eae.net/archives/2006/04/26/23.23.02/#comment-102173</guid>
		<description>Erik Arvidsson zveřejnil novou verzi svého nástroje ExCanvas , který umožňuje používat metody objektu CANVAS i v Internet Exploreru.</description>
		<content:encoded><![CDATA[<p>Erik Arvidsson zveřejnil novou verzi svého nástroje ExCanvas , který umožňuje používat metody objektu CANVAS i v Internet Exploreru.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dev::Info</title>
		<link>http://erik.eae.net/archives/2006/04/26/23.23.02/#comment-102020</link>
		<dc:creator>Dev::Info</dc:creator>
		<pubDate>Tue, 08 May 2007 17:33:43 +0000</pubDate>
		<guid isPermaLink="false">http://erik.eae.net/archives/2006/04/26/23.23.02/#comment-102020</guid>
		<description>&lt;strong&gt;Explorer Canvas...&lt;/strong&gt;

Erik Arvidsson  zveřejnil novou verzi svého nástroje ExCanvas , který umožňuje používat metody objektu CANVAS i v Internet Exploreru.


...</description>
		<content:encoded><![CDATA[<p><strong>Explorer Canvas&#8230;</strong></p>
<p>Erik Arvidsson  zveřejnil novou verzi svého nástroje ExCanvas , který umožňuje používat metody objektu CANVAS i v Internet Exploreru.</p>
<p>&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BatMan</title>
		<link>http://erik.eae.net/archives/2006/04/26/23.23.02/#comment-102013</link>
		<dc:creator>BatMan</dc:creator>
		<pubDate>Fri, 04 May 2007 01:45:41 +0000</pubDate>
		<guid isPermaLink="false">http://erik.eae.net/archives/2006/04/26/23.23.02/#comment-102013</guid>
		<description>Could some one help me find the list of changes in IE6 and IE7. In the original post, the list is empty, I assume this has been removed or truncated. Greatly appreciate if some one send the link to me again.
-BatMan</description>
		<content:encoded><![CDATA[<p>Could some one help me find the list of changes in IE6 and IE7. In the original post, the list is empty, I assume this has been removed or truncated. Greatly appreciate if some one send the link to me again.<br />
-BatMan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay Kappel</title>
		<link>http://erik.eae.net/archives/2006/04/26/23.23.02/#comment-37455</link>
		<dc:creator>Jay Kappel</dc:creator>
		<pubDate>Sat, 11 Nov 2006 00:51:59 +0000</pubDate>
		<guid isPermaLink="false">http://erik.eae.net/archives/2006/04/26/23.23.02/#comment-37455</guid>
		<description>Well, this list has dashed my hope of seeing a DOM issue addressed that has been a major pain in my side for 2 years now :(

In trying to create a "map" to an element in a page (parsing all the parent nodes and their position in their childnodes collections intil I reach the body tag), then being able to return to that element by starting at the body and navigating down the tree to the element I want.

Should be very scientific and consistant, but no.  When traversing up from the element, depending on how the html was formed sometimes the elements report the wrong parent element :O

Isn''t that a wonderful thing :S</description>
		<content:encoded><![CDATA[<p>Well, this list has dashed my hope of seeing a DOM issue addressed that has been a major pain in my side for 2 years now <img src='http://erik.eae.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>In trying to create a &#8220;map&#8221; to an element in a page (parsing all the parent nodes and their position in their childnodes collections intil I reach the body tag), then being able to return to that element by starting at the body and navigating down the tree to the element I want.</p>
<p>Should be very scientific and consistant, but no.  When traversing up from the element, depending on how the html was formed sometimes the elements report the wrong parent element :O</p>
<p>Isn&#8221;t that a wonderful thing :S</p>
]]></content:encoded>
	</item>
</channel>
</rss>
