<?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: Introducing &#8220;mini&#8221;</title>
	<atom:link href="http://james.padolsey.com/javascript/mini/feed/" rel="self" type="application/rss+xml" />
	<link>http://james.padolsey.com/javascript/mini/</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Thu, 02 Feb 2012 18:03:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
	<item>
		<title>By: cnlinkin</title>
		<link>http://james.padolsey.com/javascript/mini/comment-page-1/#comment-25124</link>
		<dc:creator>cnlinkin</dc:creator>
		<pubDate>Sat, 28 Nov 2009 13:53:56 +0000</pubDate>
		<guid isPermaLink="false">http://james.padolsey.com/?p=1074#comment-25124</guid>
		<description>hi,james:)
i&#039;ve used your mini selector and it&#039;s so cool~ but i found that in line 139-&gt; var cacheIndex = elem[uid], nextCacheIndex = n++; will no work in IE when selector have the &quot;select&quot; tag,so would you like to take care of the poor IE in the next version? :)</description>
		<content:encoded><![CDATA[<p>hi,james:)<br />
i&#8217;ve used your mini selector and it&#8217;s so cool~ but i found that in line 139-&gt; var cacheIndex = elem[uid], nextCacheIndex = n++; will no work in IE when selector have the &#8220;select&#8221; tag,so would you like to take care of the poor IE in the next version? <img src='http://james.padolsey.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex Robinson</title>
		<link>http://james.padolsey.com/javascript/mini/comment-page-1/#comment-21025</link>
		<dc:creator>Alex Robinson</dc:creator>
		<pubDate>Fri, 25 Sep 2009 11:37:11 +0000</pubDate>
		<guid isPermaLink="false">http://james.padolsey.com/?p=1074#comment-21025</guid>
		<description>David Hyatt&#039;s response to this comment of mine on the Webkit  blog

   http://webkit.org/blog/156/queryselector-and-queryselectorall/#comment-23909

explains why querySelector is slower than getElementById

&quot;Unfortunately, my understanding of the spec indicates that despite the invalidity of multiple elements having the same id, we’re required to return all elements with a given id&quot;</description>
		<content:encoded><![CDATA[<p>David Hyatt&#8217;s response to this comment of mine on the Webkit  blog</p>
<p>   <a href="http://webkit.org/blog/156/queryselector-and-queryselectorall/#comment-23909">http://webkit.org/blog/156/queryselector-and-queryselectorall/#comment-23909</a></p>
<p>explains why querySelector is slower than getElementById</p>
<p>&#8220;Unfortunately, my understanding of the spec indicates that despite the invalidity of multiple elements having the same id, we’re required to return all elements with a given id&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vasili</title>
		<link>http://james.padolsey.com/javascript/mini/comment-page-1/#comment-18012</link>
		<dc:creator>Vasili</dc:creator>
		<pubDate>Mon, 10 Aug 2009 22:47:25 +0000</pubDate>
		<guid isPermaLink="false">http://james.padolsey.com/?p=1074#comment-18012</guid>
		<description>You have inspired me to try out my JavaScript skills that I have been picking up from my book. :P

Mini looks very, very cool! :D</description>
		<content:encoded><![CDATA[<p>You have inspired me to try out my JavaScript skills that I have been picking up from my book. <img src='http://james.padolsey.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Mini looks very, very cool! <img src='http://james.padolsey.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Graham B</title>
		<link>http://james.padolsey.com/javascript/mini/comment-page-1/#comment-17908</link>
		<dc:creator>Graham B</dc:creator>
		<pubDate>Sun, 09 Aug 2009 14:59:51 +0000</pubDate>
		<guid isPermaLink="false">http://james.padolsey.com/?p=1074#comment-17908</guid>
		<description>Nice work, James. While I don&#039;t trust Slickspeed (many engines cache their returned nodesets which completely skews the results), it looks like your engine does pretty well. After building a CSS3-compliant engine I can certainly say that its a major task and that a slimline alternative such as this is far better in many situations.</description>
		<content:encoded><![CDATA[<p>Nice work, James. While I don&#8217;t trust Slickspeed (many engines cache their returned nodesets which completely skews the results), it looks like your engine does pretty well. After building a CSS3-compliant engine I can certainly say that its a major task and that a slimline alternative such as this is far better in many situations.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://james.padolsey.com/javascript/mini/comment-page-1/#comment-17906</link>
		<dc:creator>James</dc:creator>
		<pubDate>Sun, 09 Aug 2009 14:28:26 +0000</pubDate>
		<guid isPermaLink="false">http://james.padolsey.com/?p=1074#comment-17906</guid>
		<description>@Elijah, During testing I found that &lt;code&gt;context.getElementById(selector.substring(1));&lt;/code&gt; was faster than &lt;code&gt;context.querySelectorAll(selector)&lt;/code&gt; (&lt;code&gt;selector&lt;/code&gt; being equal to &#039;#id&#039;). I think I&#039;ll take another look at it anyway, there may be a better way to optimise simple selectors.</description>
		<content:encoded><![CDATA[<p>@Elijah, During testing I found that <code>context.getElementById(selector.substring(1));</code> was faster than <code>context.querySelectorAll(selector)</code> (<code>selector</code> being equal to &#8216;#id&#8217;). I think I&#8217;ll take another look at it anyway, there may be a better way to optimise simple selectors.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elijah Grey</title>
		<link>http://james.padolsey.com/javascript/mini/comment-page-1/#comment-17903</link>
		<dc:creator>Elijah Grey</dc:creator>
		<pubDate>Sun, 09 Aug 2009 13:46:20 +0000</pubDate>
		<guid isPermaLink="false">http://james.padolsey.com/?p=1074#comment-17903</guid>
		<description>Why only use &lt;code&gt;document.querySelectorAll&lt;/code&gt; when the selector isn&#039;t simple? Native is always faster so you should use it even if mini can handle it.</description>
		<content:encoded><![CDATA[<p>Why only use <code>document.querySelectorAll</code> when the selector isn&#8217;t simple? Native is always faster so you should use it even if mini can handle it.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

