<?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 For Programmers: Part 1</title>
	<atom:link href="http://ok-cool.com/posts/read/19-jquery-for-programmers-part-1/feed/" rel="self" type="application/rss+xml" />
	<link>http://ok-cool.com/posts/read/19-jquery-for-programmers-part-1/</link>
	<description>OKCOOL make cool digital applications. We help companies balance brand and technology. From mashups to mobile shennanigans to social networks.</description>
	<lastBuildDate>Tue, 09 Mar 2010 13:38:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: hjkhgjk</title>
		<link>http://ok-cool.com/posts/read/19-jquery-for-programmers-part-1/comment-page-1/#comment-4427</link>
		<dc:creator>hjkhgjk</dc:creator>
		<pubDate>Wed, 21 Oct 2009 12:00:28 +0000</pubDate>
		<guid isPermaLink="false">#comment-4427</guid>
		<description>gjkgjk</description>
		<content:encoded><![CDATA[<p>gjkgjk</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hjkhgjk</title>
		<link>http://ok-cool.com/posts/read/19-jquery-for-programmers-part-1/comment-page-1/#comment-3697</link>
		<dc:creator>hjkhgjk</dc:creator>
		<pubDate>Wed, 21 Oct 2009 05:00:28 +0000</pubDate>
		<guid isPermaLink="false">#comment-3697</guid>
		<description>gjkgjk</description>
		<content:encoded><![CDATA[<p>gjkgjk</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Grany</title>
		<link>http://ok-cool.com/posts/read/19-jquery-for-programmers-part-1/comment-page-1/#comment-3434</link>
		<dc:creator>Grany</dc:creator>
		<pubDate>Sat, 10 Oct 2009 08:12:26 +0000</pubDate>
		<guid isPermaLink="false">#comment-3434</guid>
		<description>Thanks a lot! It&#039;s a nice article! I like such amazing stories!</description>
		<content:encoded><![CDATA[<p>Thanks a lot! It&#39;s a nice article! I like such amazing stories!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://ok-cool.com/posts/read/19-jquery-for-programmers-part-1/comment-page-1/#comment-2095</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Mon, 16 Mar 2009 12:43:39 +0000</pubDate>
		<guid isPermaLink="false">#comment-2095</guid>
		<description>Just wanted to add a link (for my own reference really) to this great plugin tutorial:

http://www.learningjquery.com/2007/10/a-plugin-development-pattern</description>
		<content:encoded><![CDATA[<p>Just wanted to add a link (for my own reference really) to this great plugin tutorial:</p>
<p><a href="http://www.learningjquery.com/2007/10/a-plugin-development-pattern" rel="nofollow">http://www.learningjquery.com/2007/10/a-plugin-development-pattern</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mario Rimann</title>
		<link>http://ok-cool.com/posts/read/19-jquery-for-programmers-part-1/comment-page-1/#comment-1188</link>
		<dc:creator>Mario Rimann</dc:creator>
		<pubDate>Mon, 15 Dec 2008 08:41:39 +0000</pubDate>
		<guid isPermaLink="false">#comment-1188</guid>
		<description>Thanks for the tutorial - save me a lot of time!</description>
		<content:encoded><![CDATA[<p>Thanks for the tutorial &#8211; save me a lot of time!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jQuery实例编程 part1</title>
		<link>http://ok-cool.com/posts/read/19-jquery-for-programmers-part-1/comment-page-1/#comment-378</link>
		<dc:creator>jQuery实例编程 part1</dc:creator>
		<pubDate>Mon, 10 Mar 2008 02:22:52 +0000</pubDate>
		<guid isPermaLink="false">#comment-378</guid>
		<description>[...] part1  03月 9th, 2008 in Ajax  原文作者：ok-cool 原文链接：jQuery For Programmers: Part 1 [...]</description>
		<content:encoded><![CDATA[<p>[...] part1  03月 9th, 2008 in Ajax  原文作者：ok-cool 原文链接：jQuery For Programmers: Part 1 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeremy</title>
		<link>http://ok-cool.com/posts/read/19-jquery-for-programmers-part-1/comment-page-1/#comment-202</link>
		<dc:creator>Jeremy</dc:creator>
		<pubDate>Thu, 07 Feb 2008 20:51:08 +0000</pubDate>
		<guid isPermaLink="false">#comment-202</guid>
		<description>Good tutorial!  It&#039;s fun to see the jQuery community starting to grow...

@Dustin Diaz

In the particular plugin above, it doesn&#039;t really do much.  If $ had been passed into the function, then it would make $ a conflict safe alias for jQuery.

Example:
(function($) {
// …
})(jQuery);

I actually just finished writing my first jQuery tutorial where I happen to address this.  I would love to get some feedback:  http://jmar777.blogspot.com/2008/02/building-your-first-jquery-plugin-that.html</description>
		<content:encoded><![CDATA[<p>Good tutorial!  It&#8217;s fun to see the jQuery community starting to grow&#8230;</p>
<p>@Dustin Diaz</p>
<p>In the particular plugin above, it doesn&#8217;t really do much.  If $ had been passed into the function, then it would make $ a conflict safe alias for jQuery.</p>
<p>Example:<br />
(function($) {<br />
// …<br />
})(jQuery);</p>
<p>I actually just finished writing my first jQuery tutorial where I happen to address this.  I would love to get some feedback:  <a href="http://jmar777.blogspot.com/2008/02/building-your-first-jquery-plugin-that.html" rel="nofollow">http://jmar777.blogspot.com/2008/02/building-your-first-jquery-plugin-that.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://ok-cool.com/posts/read/19-jquery-for-programmers-part-1/comment-page-1/#comment-49</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Thu, 24 May 2007 15:38:49 +0000</pubDate>
		<guid isPermaLink="false">#comment-49</guid>
		<description>See the following for more:

&quot;http://docs.jquery.com/Plugins/Authoring#Custom_Alias_in_plugin_code&quot;:http://docs.jquery.com/Plugins/Authoring#Custom_Alias_in_plugin_code</description>
		<content:encoded><![CDATA[<p>See the following for more:</p>
<p>&#8220;http://docs.jquery.com/Plugins/Authoring#Custom_Alias_in_plugin_code&#8221;:http://docs.jquery.com/Plugins/Authoring#Custom_Alias_in_plugin_code</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://ok-cool.com/posts/read/19-jquery-for-programmers-part-1/comment-page-1/#comment-47</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Mon, 21 May 2007 16:27:43 +0000</pubDate>
		<guid isPermaLink="false">#comment-47</guid>
		<description>That&#039;s a good question Dustin... I lifted it from a previous plugin I&#039;d written. I think it was so I could scope functions locally to the plugin. If you search the jQuery group on google groups you&#039;ll probably find my post about it.</description>
		<content:encoded><![CDATA[<p>That&#8217;s a good question Dustin&#8230; I lifted it from a previous plugin I&#8217;d written. I think it was so I could scope functions locally to the plugin. If you search the jQuery group on google groups you&#8217;ll probably find my post about it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dustin Diaz</title>
		<link>http://ok-cool.com/posts/read/19-jquery-for-programmers-part-1/comment-page-1/#comment-46</link>
		<dc:creator>Dustin Diaz</dc:creator>
		<pubDate>Sun, 20 May 2007 13:37:26 +0000</pubDate>
		<guid isPermaLink="false">#comment-46</guid>
		<description>Just out of curiosity, what is the purpose of the primary closure?

(function() {
  // ...
})(jQuery);</description>
		<content:encoded><![CDATA[<p>Just out of curiosity, what is the purpose of the primary closure?</p>
<p>(function() {<br />
  // &#8230;<br />
})(jQuery);</p>
]]></content:encoded>
	</item>
</channel>
</rss>
