<?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: jQuery Still Amazes Me After 3 Years</title>
	<atom:link href="http://blog.reybango.com/2009/11/06/jquery-still-amazes-me-after-3-years/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.reybango.com/2009/11/06/jquery-still-amazes-me-after-3-years/</link>
	<description>JavaScript, HTML, CSS &#38; Random Stuff...</description>
	<lastBuildDate>Thu, 09 Sep 2010 17:52:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Josh Powell</title>
		<link>http://blog.reybango.com/2009/11/06/jquery-still-amazes-me-after-3-years/comment-page-1/#comment-211</link>
		<dc:creator>Josh Powell</dc:creator>
		<pubDate>Fri, 13 Nov 2009 05:14:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.reybango.com/?p=449#comment-211</guid>
		<description>Love your comments on jQuery Rey.  Here&#039;s how I&#039;d do it.

function jsonFlickrFeed(o) {
	var str = &#039;&lt;div&gt;&#039;, i = 0;
	while (o.items[++i]) {
		str += &#039;&lt;img src=&#039;&quot; + o.items[i].media.m + &#039;&quot;&gt;&#039;;
	}
	str += &#039;&lt;/div&gt;&#039;;
	$(&#039;#main&#039;).append(str);
}</description>
		<content:encoded><![CDATA[<p>Love your comments on jQuery Rey.  Here&#8217;s how I&#8217;d do it.</p>
<p>function jsonFlickrFeed(o) {<br />
	var str = &#8216;&lt;div&gt;&#8217;, i = 0;<br />
	while (o.items[++i]) {<br />
		str += &#8216;&lt;img src=&#8217;&#8221; + o.items[i].media.m + &#8216;&#8221;&gt;&#8217;;<br />
	}<br />
	str += &#8216;&lt;/div&gt;&#8217;;<br />
	$(&#8216;#main&#8217;).append(str);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Kruse</title>
		<link>http://blog.reybango.com/2009/11/06/jquery-still-amazes-me-after-3-years/comment-page-1/#comment-207</link>
		<dc:creator>Matt Kruse</dc:creator>
		<pubDate>Mon, 09 Nov 2009 17:28:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.reybango.com/?p=449#comment-207</guid>
		<description>ah yes, you&#039;re right, thanks.

It&#039;s a slightly different way to achieve the same goal, at least.</description>
		<content:encoded><![CDATA[<p>ah yes, you&#8217;re right, thanks.</p>
<p>It&#8217;s a slightly different way to achieve the same goal, at least.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rey Bango</title>
		<link>http://blog.reybango.com/2009/11/06/jquery-still-amazes-me-after-3-years/comment-page-1/#comment-206</link>
		<dc:creator>Rey Bango</dc:creator>
		<pubDate>Mon, 09 Nov 2009 17:23:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.reybango.com/?p=449#comment-206</guid>
		<description>@Matt: That&#039;s really nice! Looks like this part was cutoff from the comment:

mainDiv.innerHTML+=&quot;&lt;img src=&quot; + o.items[i].media.m + &quot;&gt;&quot;;

Is that correct?</description>
		<content:encoded><![CDATA[<p>@Matt: That&#8217;s really nice! Looks like this part was cutoff from the comment:</p>
<p>mainDiv.innerHTML+=&#8221;&lt;img src=&#8221; + o.items[i].media.m + &#8220;&gt;&#8221;;</p>
<p>Is that correct?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Kruse</title>
		<link>http://blog.reybango.com/2009/11/06/jquery-still-amazes-me-after-3-years/comment-page-1/#comment-205</link>
		<dc:creator>Matt Kruse</dc:creator>
		<pubDate>Mon, 09 Nov 2009 16:41:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.reybango.com/?p=449#comment-205</guid>
		<description>I use jQuery quite a bit, but a simpler POJS version would be a better comparison, and arguably clearer and faster than the jQuery version ;)

function jsonFlickrFeed(o){
  var i = -1, mainDiv = document.getElementById( &quot;main&quot; );
  while(o.items[++i]) {
    mainDiv.innerHTML+=&#039;&#039;;
  }
}</description>
		<content:encoded><![CDATA[<p>I use jQuery quite a bit, but a simpler POJS version would be a better comparison, and arguably clearer and faster than the jQuery version <img src='http://blog.reybango.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>function jsonFlickrFeed(o){<br />
  var i = -1, mainDiv = document.getElementById( &#8220;main&#8221; );<br />
  while(o.items[++i]) {<br />
    mainDiv.innerHTML+=&#8221;;<br />
  }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rey Bango</title>
		<link>http://blog.reybango.com/2009/11/06/jquery-still-amazes-me-after-3-years/comment-page-1/#comment-203</link>
		<dc:creator>Rey Bango</dc:creator>
		<pubDate>Fri, 06 Nov 2009 22:00:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.reybango.com/?p=449#comment-203</guid>
		<description>Absolutely agree Mike. My time with Mozilla really opened my eyes to the painstaking process browser teams have to go through to 1) get a consistent message about what standards are and 2) implement them in a concise way. You and the Firefox team truly have an unenviable task but totally kick ass doing it.</description>
		<content:encoded><![CDATA[<p>Absolutely agree Mike. My time with Mozilla really opened my eyes to the painstaking process browser teams have to go through to 1) get a consistent message about what standards are and 2) implement them in a concise way. You and the Firefox team truly have an unenviable task but totally kick ass doing it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Shaver</title>
		<link>http://blog.reybango.com/2009/11/06/jquery-still-amazes-me-after-3-years/comment-page-1/#comment-202</link>
		<dc:creator>Mike Shaver</dc:creator>
		<pubDate>Fri, 06 Nov 2009 21:55:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.reybango.com/?p=449#comment-202</guid>
		<description>I wish the technologies and standards were dead easy, alas! :-)</description>
		<content:encoded><![CDATA[<p>I wish the technologies and standards were dead easy, alas! <img src='http://blog.reybango.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->