<?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.NameSpace</title>
	<atom:link href="http://projects.pro.br/gsaraiva/jquerynamespace/feed/" rel="self" type="application/rss+xml" />
	<link>http://projects.pro.br/gsaraiva</link>
	<description>Step by step</description>
	<lastBuildDate>Sun, 30 Aug 2009 01:10:08 -0300</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Gilberto Saraiva</title>
		<link>http://projects.pro.br/gsaraiva/jquerynamespace/comment-page-1/#comment-3473</link>
		<dc:creator>Gilberto Saraiva</dc:creator>
		<pubDate>Mon, 20 Jul 2009 22:35:04 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?page_id=52#comment-3473</guid>
		<description>inherited property enables the correctly call for the function.
<!--DEVFMTCODE--><pre class="devcodeblock" title="Javascript"><div class="devcodeoverflow"><ol><li>&nbsp;&nbsp;$.<span style="color: #003366; font-weight: bold;">namespace</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;customCss&quot;</span><span style="color: #339933;">,</span> <span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;inherited<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #339933;">,</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;SetColor<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>color<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #000066; font-weight: bold;">return</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;backgroundColor&quot;</span><span style="color: #339933;">,</span> color<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #009900;">&#125;</span></li><li>&nbsp;&nbsp;<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li></ol></div></pre><!--END_DEVFMTCODE-->

Without inherited param, you have to manipulate params as a array, like the example below:
<!--DEVFMTCODE--><pre class="devcodeblock" title="Javascript"><div class="devcodeoverflow"><ol><li>&nbsp;&nbsp;$.<span style="color: #003366; font-weight: bold;">namespace</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;customCss&quot;</span><span style="color: #339933;">,</span> <span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;SetColor<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>elem<span style="color: #339933;">,</span> params<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #000066; font-weight: bold;">return</span> elem.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;backgroundColor&quot;</span><span style="color: #339933;">,</span> params<span style="color: #009900;">&#91;</span>0<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #009900;">&#125;</span></li><li>&nbsp;&nbsp;<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li></ol></div></pre><!--END_DEVFMTCODE-->

The use for both:
<!--DEVFMTCODE--><pre class="devcodeblock" title="Javascript"><div class="devcodeoverflow"><ol><li>$<span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#CustomDiv'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">customCss</span>.<span style="color: #660066;">SetColor</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;green&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li><span style="color: #009900;">&#125;</span></li></ol></div></pre><!--END_DEVFMTCODE--></description>
		<content:encoded><![CDATA[<p>inherited property enables the correctly call for the function.<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="Javascript"><div class="devcodeoverflow"><ol><li>&nbsp;&nbsp;$.<span style="color: #003366; font-weight: bold;">namespace</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;customCss&quot;</span><span style="color: #339933;">,</span> <span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;inherited<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #339933;">,</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;SetColor<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>color<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #000066; font-weight: bold;">return</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;backgroundColor&quot;</span><span style="color: #339933;">,</span> color<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #009900;">&#125;</span></li><li>&nbsp;&nbsp;<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p>Without inherited param, you have to manipulate params as a array, like the example below:<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="Javascript"><div class="devcodeoverflow"><ol><li>&nbsp;&nbsp;$.<span style="color: #003366; font-weight: bold;">namespace</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;customCss&quot;</span><span style="color: #339933;">,</span> <span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;SetColor<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>elem<span style="color: #339933;">,</span> params<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #000066; font-weight: bold;">return</span> elem.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;backgroundColor&quot;</span><span style="color: #339933;">,</span> params<span style="color: #009900;">&#91;</span>0<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #009900;">&#125;</span></li><li>&nbsp;&nbsp;<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p>The use for both:<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="Javascript"><div class="devcodeoverflow"><ol><li>$<span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#CustomDiv'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">customCss</span>.<span style="color: #660066;">SetColor</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;green&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li><span style="color: #009900;">&#125;</span></li></ol></div></pre><!--END_DEVFMTCODE--></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: João Marcus Christ</title>
		<link>http://projects.pro.br/gsaraiva/jquerynamespace/comment-page-1/#comment-3469</link>
		<dc:creator>João Marcus Christ</dc:creator>
		<pubDate>Mon, 20 Jul 2009 18:39:00 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?page_id=52#comment-3469</guid>
		<description>How can I let the namespaced methods accept parameters?</description>
		<content:encoded><![CDATA[<p>How can I let the namespaced methods accept parameters?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gilberto Saraiva</title>
		<link>http://projects.pro.br/gsaraiva/jquerynamespace/comment-page-1/#comment-3460</link>
		<dc:creator>Gilberto Saraiva</dc:creator>
		<pubDate>Sun, 19 Jul 2009 15:41:39 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?page_id=52#comment-3460</guid>
		<description>Oh my! really sorry, I&#039;ve fixed it now.</description>
		<content:encoded><![CDATA[<p>Oh my! really sorry, I&#8217;ve fixed it now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://projects.pro.br/gsaraiva/jquerynamespace/comment-page-1/#comment-3455</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Sun, 19 Jul 2009 00:55:40 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?page_id=52#comment-3455</guid>
		<description>The download does not appear to be working.</description>
		<content:encoded><![CDATA[<p>The download does not appear to be working.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gilberto Saraiva</title>
		<link>http://projects.pro.br/gsaraiva/jquerynamespace/comment-page-1/#comment-2547</link>
		<dc:creator>Gilberto Saraiva</dc:creator>
		<pubDate>Mon, 02 Mar 2009 17:16:14 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?page_id=52#comment-2547</guid>
		<description>Dan,

Will be the next step of jQuery.NameSpace.

Thanks for the suggestion.</description>
		<content:encoded><![CDATA[<p>Dan,</p>
<p>Will be the next step of jQuery.NameSpace.</p>
<p>Thanks for the suggestion.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://projects.pro.br/gsaraiva/jquerynamespace/comment-page-1/#comment-2515</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Mon, 23 Feb 2009 15:42:27 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?page_id=52#comment-2515</guid>
		<description>Hey Gilverto.  Good stuff!  One recommendation.  var both the nss and snss variables so they don&#039;t pollute the global namespace.  Thanks. -Dan</description>
		<content:encoded><![CDATA[<p>Hey Gilverto.  Good stuff!  One recommendation.  var both the nss and snss variables so they don&#8217;t pollute the global namespace.  Thanks. -Dan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gilberto Saraiva</title>
		<link>http://projects.pro.br/gsaraiva/jquerynamespace/comment-page-1/#comment-2391</link>
		<dc:creator>Gilberto Saraiva</dc:creator>
		<pubDate>Sun, 01 Feb 2009 15:52:13 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?page_id=52#comment-2391</guid>
		<description>Marc, I&#039;ve updated jquery.namespace to 2008.0.1.2
Thanks for the suggestion.</description>
		<content:encoded><![CDATA[<p>Marc, I&#8217;ve updated jquery.namespace to 2008.0.1.2<br />
Thanks for the suggestion.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc van Neerven</title>
		<link>http://projects.pro.br/gsaraiva/jquerynamespace/comment-page-1/#comment-2389</link>
		<dc:creator>Marc van Neerven</dc:creator>
		<pubDate>Sun, 01 Feb 2009 12:40:22 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?page_id=52#comment-2389</guid>
		<description>Fixed some issues with your plugin (http://plugins.jquery.com/node/5995)</description>
		<content:encoded><![CDATA[<p>Fixed some issues with your plugin (<a href="http://plugins.jquery.com/node/5995)" rel="nofollow">http://plugins.jquery.com/node/5995)</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc van Neerven</title>
		<link>http://projects.pro.br/gsaraiva/jquerynamespace/comment-page-1/#comment-2371</link>
		<dc:creator>Marc van Neerven</dc:creator>
		<pubDate>Fri, 30 Jan 2009 14:52:14 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?page_id=52#comment-2371</guid>
		<description>For your information, I posted a bugfix on plugins.jquery.com, http://plugins.jquery.com/node/5995

Marc</description>
		<content:encoded><![CDATA[<p>For your information, I posted a bugfix on plugins.jquery.com, <a href="http://plugins.jquery.com/node/5995" rel="nofollow">http://plugins.jquery.com/node/5995</a></p>
<p>Marc</p>
]]></content:encoded>
	</item>
</channel>
</rss>
