<?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: $ is not a function</title>
	<atom:link href="http://www.adrogen.com/blog/jquery-conflict-is-not-a-function/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.adrogen.com/blog/jquery-conflict-is-not-a-function/</link>
	<description>our thoughts online</description>
	<lastBuildDate>Tue, 20 Jul 2010 00:04:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Pete</title>
		<link>http://www.adrogen.com/blog/jquery-conflict-is-not-a-function/comment-page-1/#comment-3154</link>
		<dc:creator>Pete</dc:creator>
		<pubDate>Fri, 16 Apr 2010 15:49:59 +0000</pubDate>
		<guid isPermaLink="false">http://adrogen.com/blog/?p=9#comment-3154</guid>
		<description>No problem Nicolo ;-)  Just glad it helped.</description>
		<content:encoded><![CDATA[<p>No problem Nicolo <img src='http://www.adrogen.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />   Just glad it helped.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nicolo Verrini</title>
		<link>http://www.adrogen.com/blog/jquery-conflict-is-not-a-function/comment-page-1/#comment-3153</link>
		<dc:creator>Nicolo Verrini</dc:creator>
		<pubDate>Fri, 16 Apr 2010 15:36:34 +0000</pubDate>
		<guid isPermaLink="false">http://adrogen.com/blog/?p=9#comment-3153</guid>
		<description>Thank you Man</description>
		<content:encoded><![CDATA[<p>Thank you Man</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pete</title>
		<link>http://www.adrogen.com/blog/jquery-conflict-is-not-a-function/comment-page-1/#comment-3056</link>
		<dc:creator>Pete</dc:creator>
		<pubDate>Tue, 06 Apr 2010 15:11:26 +0000</pubDate>
		<guid isPermaLink="false">http://adrogen.com/blog/?p=9#comment-3056</guid>
		<description>Hi Esteban.

Is that function not working for you?  If its working for your particular space, there should be nothing whatsoever wrong with using it.

As Mads demonstrated above, one of the great things about programming / problem solving is that there is generally many ways to accomplish a problem.</description>
		<content:encoded><![CDATA[<p>Hi Esteban.</p>
<p>Is that function not working for you?  If its working for your particular space, there should be nothing whatsoever wrong with using it.</p>
<p>As Mads demonstrated above, one of the great things about programming / problem solving is that there is generally many ways to accomplish a problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Esteban</title>
		<link>http://www.adrogen.com/blog/jquery-conflict-is-not-a-function/comment-page-1/#comment-3054</link>
		<dc:creator>Esteban</dc:creator>
		<pubDate>Tue, 06 Apr 2010 12:54:27 +0000</pubDate>
		<guid isPermaLink="false">http://adrogen.com/blog/?p=9#comment-3054</guid>
		<description>Hi!

I stumbled upon this article: http://codeimpossible.com/2010/01/13/solving-document-ready-is-not-a-function-and-other-problems/ and I was wondering what’s wrong with this solution:

&lt;pre name=&quot;code&quot; class=&quot;js&quot;&gt;
function($) {
   // we can now rely on $ within the safety of our “bodyguard” function
   $(document).ready( function() { 
       alert(”nyah nyah! I’m able to use ‘$’!!!!”);
   } );
} ) ( jQuery );
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>I stumbled upon this article: <a href="http://codeimpossible.com/2010/01/13/solving-document-ready-is-not-a-function-and-other-problems/" rel="nofollow">http://codeimpossible.com/2010/01/13/solving-document-ready-is-not-a-function-and-other-problems/</a> and I was wondering what’s wrong with this solution:</p>
<pre name="code" class="js">
function($) {
   // we can now rely on $ within the safety of our “bodyguard” function
   $(document).ready( function() {
       alert(”nyah nyah! I’m able to use ‘$’!!!!”);
   } );
} ) ( jQuery );
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: css</title>
		<link>http://www.adrogen.com/blog/jquery-conflict-is-not-a-function/comment-page-1/#comment-2736</link>
		<dc:creator>css</dc:creator>
		<pubDate>Sat, 20 Feb 2010 15:15:55 +0000</pubDate>
		<guid isPermaLink="false">http://adrogen.com/blog/?p=9#comment-2736</guid>
		<description>Nice positing</description>
		<content:encoded><![CDATA[<p>Nice positing</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mads</title>
		<link>http://www.adrogen.com/blog/jquery-conflict-is-not-a-function/comment-page-1/#comment-2607</link>
		<dc:creator>Mads</dc:creator>
		<pubDate>Thu, 04 Feb 2010 23:27:59 +0000</pubDate>
		<guid isPermaLink="false">http://adrogen.com/blog/?p=9#comment-2607</guid>
		<description>var $ = jQuery.noConflict();
$(function){...

Also works :)</description>
		<content:encoded><![CDATA[<p>var $ = jQuery.noConflict();<br />
$(function){&#8230;</p>
<p>Also works <img src='http://www.adrogen.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://www.adrogen.com/blog/jquery-conflict-is-not-a-function/comment-page-1/#comment-2277</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Sat, 19 Dec 2009 15:41:22 +0000</pubDate>
		<guid isPermaLink="false">http://adrogen.com/blog/?p=9#comment-2277</guid>
		<description>Dude, you just saved me.  I couldn&#039;t figure out what was wrong with my code.</description>
		<content:encoded><![CDATA[<p>Dude, you just saved me.  I couldn&#8217;t figure out what was wrong with my code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vincy</title>
		<link>http://www.adrogen.com/blog/jquery-conflict-is-not-a-function/comment-page-1/#comment-2056</link>
		<dc:creator>Vincy</dc:creator>
		<pubDate>Wed, 02 Dec 2009 20:09:44 +0000</pubDate>
		<guid isPermaLink="false">http://adrogen.com/blog/?p=9#comment-2056</guid>
		<description>Very useful article. Thank you!</description>
		<content:encoded><![CDATA[<p>Very useful article. Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pete</title>
		<link>http://www.adrogen.com/blog/jquery-conflict-is-not-a-function/comment-page-1/#comment-1438</link>
		<dc:creator>Pete</dc:creator>
		<pubDate>Wed, 04 Nov 2009 01:58:11 +0000</pubDate>
		<guid isPermaLink="false">http://adrogen.com/blog/?p=9#comment-1438</guid>
		<description>No problem, just glad it helped :-)  And Envio, we all gotta start somewhere, eh?</description>
		<content:encoded><![CDATA[<p>No problem, just glad it helped <img src='http://www.adrogen.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   And Envio, we all gotta start somewhere, eh?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: envio</title>
		<link>http://www.adrogen.com/blog/jquery-conflict-is-not-a-function/comment-page-1/#comment-1435</link>
		<dc:creator>envio</dc:creator>
		<pubDate>Wed, 04 Nov 2009 01:25:18 +0000</pubDate>
		<guid isPermaLink="false">http://adrogen.com/blog/?p=9#comment-1435</guid>
		<description>Thank&#039;s , I am newbie on jQuery ^^</description>
		<content:encoded><![CDATA[<p>Thank&#8217;s , I am newbie on jQuery ^^</p>
]]></content:encoded>
	</item>
</channel>
</rss>
