<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.1.3" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: DOM &#038; Prototype: now even faster</title>
	<link>http://ajaxorized.com/dom-prototype-now-even-faster/</link>
	<description>Web Innovation</description>
	<pubDate>Fri, 21 Nov 2008 05:02:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.3</generator>

	<item>
		<title>By: Daniel</title>
		<link>http://ajaxorized.com/dom-prototype-now-even-faster/#comment-3</link>
		<author>Daniel</author>
		<pubDate>Tue, 25 Sep 2007 08:50:52 +0000</pubDate>
		<guid>http://ajaxorized.com/dom-prototype-now-even-faster/#comment-3</guid>
					<description>I couldn't understand some parts of this article o.us poetry, but I guess I just need to check some more resources regarding this, because it sounds interesting.</description>
		<content:encoded><![CDATA[<p>I couldn&#8217;t understand some parts of this article o.us poetry, but I guess I just need to check some more resources regarding this, because it sounds interesting.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: admin</title>
		<link>http://ajaxorized.com/dom-prototype-now-even-faster/#comment-4</link>
		<author>admin</author>
		<pubDate>Tue, 25 Sep 2007 08:59:50 +0000</pubDate>
		<guid>http://ajaxorized.com/dom-prototype-now-even-faster/#comment-4</guid>
					<description>Hi Daniel,
The functions above are based on the javascript prototype framework, maybe you should take a look at this at prototypejs.org .

Cheers</description>
		<content:encoded><![CDATA[<p>Hi Daniel,<br />
The functions above are based on the javascript prototype framework, maybe you should take a look at this at prototypejs.org .</p>
<p>Cheers</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: zack</title>
		<link>http://ajaxorized.com/dom-prototype-now-even-faster/#comment-5</link>
		<author>zack</author>
		<pubDate>Tue, 25 Sep 2007 20:55:03 +0000</pubDate>
		<guid>http://ajaxorized.com/dom-prototype-now-even-faster/#comment-5</guid>
					<description>that's nice, but aren't you duplicating the functionality of Builder?</description>
		<content:encoded><![CDATA[<p>that&#8217;s nice, but aren&#8217;t you duplicating the functionality of Builder?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: All in a days work&#8230;</title>
		<link>http://ajaxorized.com/dom-prototype-now-even-faster/#comment-6</link>
		<author>All in a days work&#8230;</author>
		<pubDate>Wed, 26 Sep 2007 01:29:19 +0000</pubDate>
		<guid>http://ajaxorized.com/dom-prototype-now-even-faster/#comment-6</guid>
					<description>[...] DOM and Prototype: now even faster Using these functionse, you will be able to create HTML structures on the fast DOM-lane. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] DOM and Prototype: now even faster Using these functionse, you will be able to create HTML structures on the fast DOM-lane. [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Martijn de Kuijper</title>
		<link>http://ajaxorized.com/dom-prototype-now-even-faster/#comment-7</link>
		<author>Martijn de Kuijper</author>
		<pubDate>Sun, 30 Sep 2007 19:37:54 +0000</pubDate>
		<guid>http://ajaxorized.com/dom-prototype-now-even-faster/#comment-7</guid>
					<description>Builder is from scriptaculous, so that's a different framework ;)</description>
		<content:encoded><![CDATA[<p>Builder is from scriptaculous, so that&#8217;s a different framework <img src='http://ajaxorized.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Marshal</title>
		<link>http://ajaxorized.com/dom-prototype-now-even-faster/#comment-28</link>
		<author>Marshal</author>
		<pubDate>Tue, 06 Nov 2007 14:56:53 +0000</pubDate>
		<guid>http://ajaxorized.com/dom-prototype-now-even-faster/#comment-28</guid>
					<description>it is definately quick, but users should keep in mind some of the gotcha's that will bite them if they aren't careful!

Microsoft Internet Explorer has a LOT of DOM bugs that will cause failure in you functions (if no precautions are taken).

1.) Adding any inline events (e.g. onclick) will work in all browsers *EXCEPT* IE
Bug Link:
http://webbugtrack.blogspot.com/2007/08/bug-242-setattribute-doesnt-always-work.html


2.) Setting attributes in IE requires sending in the CaMeLcAsE version of the property name.  e.g. 'cellPadding', 'frameBorder', 'colSpan'
Bug Link:
http://webbugtrack.blogspot.com/2007/08/bug-242-setattribute-doesnt-always-work.html


3.) Setting attributes in IE like 'for' or 'style' won't work either.
Bug Links:
http://webbugtrack.blogspot.com/2007/09/bug-116-for-attribute-woes-in-ie6.html

http://webbugtrack.blogspot.com/2007/10/bug-245-setattribute-style-does-not.html

4.) Setting the 'type' or 'name' attributes in IE will also fail.
Bug Links:
http://webbugtrack.blogspot.com/2007/09/bug-237-type-is-readonly-attribute-in.html

http://webbugtrack.blogspot.com/2007/10/bug-235-createelement-is-broken-in-ie.html

Just an FYI! ;-)</description>
		<content:encoded><![CDATA[<p>it is definately quick, but users should keep in mind some of the gotcha&#8217;s that will bite them if they aren&#8217;t careful!</p>
<p>Microsoft Internet Explorer has a LOT of DOM bugs that will cause failure in you functions (if no precautions are taken).</p>
<p>1.) Adding any inline events (e.g. onclick) will work in all browsers *EXCEPT* IE<br />
Bug Link:<br />
<a href="http://webbugtrack.blogspot.com/2007/08/bug-242-setattribute-doesnt-always-work.html" rel="nofollow">http://webbugtrack.blogspot.com/2007/08/bug-242-setattribute-doesnt-always-work.html</a></p>
<p>2.) Setting attributes in IE requires sending in the CaMeLcAsE version of the property name.  e.g. &#8216;cellPadding&#8217;, &#8216;frameBorder&#8217;, &#8216;colSpan&#8217;<br />
Bug Link:<br />
<a href="http://webbugtrack.blogspot.com/2007/08/bug-242-setattribute-doesnt-always-work.html" rel="nofollow">http://webbugtrack.blogspot.com/2007/08/bug-242-setattribute-doesnt-always-work.html</a></p>
<p>3.) Setting attributes in IE like &#8216;for&#8217; or &#8217;style&#8217; won&#8217;t work either.<br />
Bug Links:<br />
<a href="http://webbugtrack.blogspot.com/2007/09/bug-116-for-attribute-woes-in-ie6.html" rel="nofollow">http://webbugtrack.blogspot.com/2007/09/bug-116-for-attribute-woes-in-ie6.html</a></p>
<p><a href="http://webbugtrack.blogspot.com/2007/10/bug-245-setattribute-style-does-not.html" rel="nofollow">http://webbugtrack.blogspot.com/2007/10/bug-245-setattribute-style-does-not.html</a></p>
<p>4.) Setting the &#8216;type&#8217; or &#8216;name&#8217; attributes in IE will also fail.<br />
Bug Links:<br />
<a href="http://webbugtrack.blogspot.com/2007/09/bug-237-type-is-readonly-attribute-in.html" rel="nofollow">http://webbugtrack.blogspot.com/2007/09/bug-237-type-is-readonly-attribute-in.html</a></p>
<p><a href="http://webbugtrack.blogspot.com/2007/10/bug-235-createelement-is-broken-in-ie.html" rel="nofollow">http://webbugtrack.blogspot.com/2007/10/bug-235-createelement-is-broken-in-ie.html</a></p>
<p>Just an FYI! <img src='http://ajaxorized.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /></p>
]]></content:encoded>
				</item>
</channel>
</rss>
