<?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: Writing reusable jQuery modules: Make everything a plugin</title>
	<atom:link href="http://pathfindersoftware.com/2008/06/writing-reusable-jquery-modules-make-everything-a-plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://pathfindersoftware.com/2008/06/writing-reusable-jquery-modules-make-everything-a-plugin/</link>
	<description>The Fastest Way to Launch Successful Software</description>
	<lastBuildDate>Thu, 19 Jan 2012 16:36:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Nova&#8217;s Blog &#187; Blog Archiv &#187; JQuery Tutorials für Einsteiger</title>
		<link>http://pathfindersoftware.com/2008/06/writing-reusable-jquery-modules-make-everything-a-plugin/#comment-8393</link>
		<dc:creator>Nova&#8217;s Blog &#187; Blog Archiv &#187; JQuery Tutorials für Einsteiger</dc:creator>
		<pubDate>Sat, 30 Aug 2008 17:00:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=996#comment-8393</guid>
		<description>[...] http://blog.jeremymartin.name/2008/0&#8230;ugin-that.html http://www.pathf.com/blogs/2008/06/w&#8230;hing-a-plugin/ http://www.keepthewebweird.com/?p=27 http://jqueryfordesigners.com/coda-popup-bubbles/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://blog.jeremymartin.name/2008/0&#8230;ugin-that.html" rel="nofollow">http://blog.jeremymartin.name/2008/0&#8230;ugin-that.html</a> <a href="http://www.pathf.com/blogs/2008/06/w&#8230;hing-a-plugin/" rel="nofollow">http://www.pathf.com/blogs/2008/06/w&#8230;hing-a-plugin/</a> <a href="http://www.keepthewebweird.com/?p=27" rel="nofollow">http://www.keepthewebweird.com/?p=27</a> <a href="http://jqueryfordesigners.com/coda-popup-bubbles/" rel="nofollow">http://jqueryfordesigners.com/coda-popup-bubbles/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian Dillard</title>
		<link>http://pathfindersoftware.com/2008/06/writing-reusable-jquery-modules-make-everything-a-plugin/#comment-8392</link>
		<dc:creator>Brian Dillard</dc:creator>
		<pubDate>Mon, 07 Jul 2008 12:16:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=996#comment-8392</guid>
		<description>@Karl: Thanks for the pointer. I&#039;m constantly amazed at how easily I&#039;m able to turn 3-, 4- or 5-liners into 1-liners with jQuery. The selector syntax is practically a language of its own, one I haven&#039;t mastered nearly as well as the actual methods and control structures.</description>
		<content:encoded><![CDATA[<p>@Karl: Thanks for the pointer. I&#8217;m constantly amazed at how easily I&#8217;m able to turn 3-, 4- or 5-liners into 1-liners with jQuery. The selector syntax is practically a language of its own, one I haven&#8217;t mastered nearly as well as the actual methods and control structures.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug</title>
		<link>http://pathfindersoftware.com/2008/06/writing-reusable-jquery-modules-make-everything-a-plugin/#comment-8391</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Sat, 05 Jul 2008 17:57:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=996#comment-8391</guid>
		<description>I thought I knew JS.</description>
		<content:encoded><![CDATA[<p>I thought I knew JS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karl Swedberg</title>
		<link>http://pathfindersoftware.com/2008/06/writing-reusable-jquery-modules-make-everything-a-plugin/#comment-8390</link>
		<dc:creator>Karl Swedberg</dc:creator>
		<pubDate>Tue, 01 Jul 2008 23:58:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=996#comment-8390</guid>
		<description>Nice article, Brian! It&#039;s good to see people advocating the writing of jQuery plugins. One thing you might want to consider for tightening up your plugin a bit is to change this:

&lt;code&gt;list.find(&#039;li&#039;).each(function(i){
	var $this = $(this);
	if (i &gt; opts.hideIndex) {
		$this.hide();
	}
});&lt;/code&gt;


to this:

&lt;code&gt;list.find(&#039;li:gt(&#039; + opts.hideIndex + &#039;)&#039;).hide();&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Nice article, Brian! It&#8217;s good to see people advocating the writing of jQuery plugins. One thing you might want to consider for tightening up your plugin a bit is to change this:</p>
<p><code>list.find('li').each(function(i){<br />
	var $this = $(this);<br />
	if (i &gt; opts.hideIndex) {<br />
		$this.hide();<br />
	}<br />
});</code></p>
<p>to this:</p>
<p><code>list.find('li:gt(' + opts.hideIndex + ')').hide();</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jamie Thompson</title>
		<link>http://pathfindersoftware.com/2008/06/writing-reusable-jquery-modules-make-everything-a-plugin/#comment-8389</link>
		<dc:creator>Jamie Thompson</dc:creator>
		<pubDate>Tue, 01 Jul 2008 08:36:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=996#comment-8389</guid>
		<description>I agree. It&#039;s easy to get carried away on the wave of &quot;only a few lines of code&quot;. I spent about a year using jQuery procedurally  before the penny dropped. Plugins are where it&#039;s at.</description>
		<content:encoded><![CDATA[<p>I agree. It&#8217;s easy to get carried away on the wave of &#8220;only a few lines of code&#8221;. I spent about a year using jQuery procedurally  before the penny dropped. Plugins are where it&#8217;s at.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic (User agent is rejected)
Page Caching using memcached (User agent is rejected)

Served from: pathfindersoftware.com @ 2012-02-10 02:55:01 -->
