<?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: Working out the Internet Explorer Bugs</title>
	<atom:link href="http://livingmachines.net/2009/05/working-out-the-internet-explorer-bugs/feed/" rel="self" type="application/rss+xml" />
	<link>http://livingmachines.net/2009/05/working-out-the-internet-explorer-bugs/</link>
	<description>Test-driven development of a JavaScript MVC library, from the ground up...</description>
	<lastBuildDate>Sat, 07 Jan 2012 08:27:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jason S. Kerchner</title>
		<link>http://livingmachines.net/2009/05/working-out-the-internet-explorer-bugs/comment-page-1/#comment-540</link>
		<dc:creator>Jason S. Kerchner</dc:creator>
		<pubDate>Thu, 14 May 2009 15:07:26 +0000</pubDate>
		<guid isPermaLink="false">http://livingmachines.net/?p=400#comment-540</guid>
		<description>That&#039;s a good point.  I was only thinking of a unique ID for the View, but your approach allows for unique ID&#039;s across the entire application. And I wouldn&#039;t have to code any additional counters when I did need an ID for another purpose.  Nice.</description>
		<content:encoded><![CDATA[<p>That&#8217;s a good point.  I was only thinking of a unique ID for the View, but your approach allows for unique ID&#8217;s across the entire application. And I wouldn&#8217;t have to code any additional counters when I did need an ID for another purpose.  Nice.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tim</title>
		<link>http://livingmachines.net/2009/05/working-out-the-internet-explorer-bugs/comment-page-1/#comment-539</link>
		<dc:creator>tim</dc:creator>
		<pubDate>Thu, 14 May 2009 14:07:50 +0000</pubDate>
		<guid isPermaLink="false">http://livingmachines.net/?p=400#comment-539</guid>
		<description>You can do this in a more broad sense like this.

var uID = 0;
function getUniqueID(){
  return &#039;g&#039; + uID++;
}

then call this wherever you want...

foo.id = getUniqueID();
bar.id = &#039;prefix_&#039; + getUniqueID();</description>
		<content:encoded><![CDATA[<p>You can do this in a more broad sense like this.</p>
<p>var uID = 0;<br />
function getUniqueID(){<br />
  return &#8216;g&#8217; + uID++;<br />
}</p>
<p>then call this wherever you want&#8230;</p>
<p>foo.id = getUniqueID();<br />
bar.id = &#8216;prefix_&#8217; + getUniqueID();</p>
]]></content:encoded>
	</item>
</channel>
</rss>

