<?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: A Complete Guide To jQuery &#8211; Learning The Basics</title>
	<atom:link href="http://new2wp.com/noob/a-complete-guide-to-jquery-learning-the-basics/feed/" rel="self" type="application/rss+xml" />
	<link>http://new2wp.com/noob/a-complete-guide-to-jquery-learning-the-basics/</link>
	<description>Wordpress Tips for Noobs, Rookies and Pros</description>
	<lastBuildDate>Thu, 28 Jul 2011 19:07:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1-RC2</generator>
	<item>
		<title>By: iDesignow</title>
		<link>http://new2wp.com/noob/a-complete-guide-to-jquery-learning-the-basics/comment-page-1/#comment-6797</link>
		<dc:creator>iDesignow</dc:creator>
		<pubDate>Sun, 24 Jul 2011 14:01:58 +0000</pubDate>
		<guid isPermaLink="false">http://new2wp.com/?p=433#comment-6797</guid>
		<description>very nice jquery tutorial, thanks for sharing !</description>
		<content:encoded><![CDATA[<p>very nice jquery tutorial, thanks for sharing !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Techie Salsan</title>
		<link>http://new2wp.com/noob/a-complete-guide-to-jquery-learning-the-basics/comment-page-1/#comment-6027</link>
		<dc:creator>Techie Salsan</dc:creator>
		<pubDate>Mon, 09 May 2011 09:28:51 +0000</pubDate>
		<guid isPermaLink="false">http://new2wp.com/?p=433#comment-6027</guid>
		<description>you could helped me to implement Jquery in my academic project. thanks for the Jquery tutorial.</description>
		<content:encoded><![CDATA[<p>you could helped me to implement Jquery in my academic project. thanks for the Jquery tutorial.<br />
<span class="cluv">Techie Salsan recently posted..<a class="e8adca8e21 6027" href="http://discusstech.org/2011/05/difference-between-lcd-and-plasma-tv/">Difference between Lcd and Plasma TV</a></span></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 11 jQuery Tutorials To Kick Off New2jQuery &#124; New2jQuery</title>
		<link>http://new2wp.com/noob/a-complete-guide-to-jquery-learning-the-basics/comment-page-1/#comment-2177</link>
		<dc:creator>11 jQuery Tutorials To Kick Off New2jQuery &#124; New2jQuery</dc:creator>
		<pubDate>Fri, 19 Nov 2010 03:52:02 +0000</pubDate>
		<guid isPermaLink="false">http://new2wp.com/?p=433#comment-2177</guid>
		<description>[...] Guide To jQuery – Learning The Basics [...]</description>
		<content:encoded><![CDATA[<p>[...] Guide To jQuery – Learning The Basics [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://new2wp.com/noob/a-complete-guide-to-jquery-learning-the-basics/comment-page-1/#comment-1735</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Mon, 06 Sep 2010 19:37:42 +0000</pubDate>
		<guid isPermaLink="false">http://new2wp.com/?p=433#comment-1735</guid>
		<description>Thanks for the tutorial. I&#039;m a jquery noob trying to pick it up as I go along.</description>
		<content:encoded><![CDATA[<p>Thanks for the tutorial. I'm a jquery noob trying to pick it up as I go along.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bassam Aklan</title>
		<link>http://new2wp.com/noob/a-complete-guide-to-jquery-learning-the-basics/comment-page-1/#comment-1598</link>
		<dc:creator>Bassam Aklan</dc:creator>
		<pubDate>Sat, 14 Aug 2010 23:27:03 +0000</pubDate>
		<guid isPermaLink="false">http://new2wp.com/?p=433#comment-1598</guid>
		<description>Thank you for the nice post, but I have a question, why appendTo() is considered as destructive operation since it doesn&#039;t create new set. It just only add the current selected set to the code?</description>
		<content:encoded><![CDATA[<p>Thank you for the nice post, but I have a question, why appendTo() is considered as destructive operation since it doesn't create new set. It just only add the current selected set to the code?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luka Kladaric</title>
		<link>http://new2wp.com/noob/a-complete-guide-to-jquery-learning-the-basics/comment-page-1/#comment-94</link>
		<dc:creator>Luka Kladaric</dc:creator>
		<pubDate>Thu, 04 Mar 2010 09:44:12 +0000</pubDate>
		<guid isPermaLink="false">http://new2wp.com/?p=433#comment-94</guid>
		<description>dude...

// selects all &lt;a&gt;, , and  elements
jQuery(&#039;a li div&#039;)

no it doesn&#039;t... it selects all DIVs that are inside LIs that are inside As


// selects the  with the #header ID and each  element within it
jQuery (&#039;#div li&#039;)

no it doesn&#039;t, it selects all LIs that are inside ANY element with id=&quot;DIV&quot;... and it especially does NOT select the containing &quot;div&quot; (or #div)

// &lt;a&gt; with class .external
jQuery(&#039;a&#039;).filter(&#039;.external&#039;)

extremely silly example as there&#039;s no reason not to just say jQuery(&#039;a.external&#039;) which would be way faster... maybe if you had said jQuery(&#039;a&#039;).css(&#039;border&#039;, &#039;1px solid red&#039;).filter(&#039;.external&#039;).css(&#039;border&#039;, &#039;1px solid blue&#039;) that would&#039;ve made more sense

etc...</description>
		<content:encoded><![CDATA[<p>dude...</p>
<p>// selects all &lt;a&gt;, , and  elements<br />
jQuery('a li div')</p>
<p>no it doesn't... it selects all DIVs that are inside LIs that are inside As</p>
<p>// selects the  with the #header ID and each  element within it<br />
jQuery ('#div li')</p>
<p>no it doesn't, it selects all LIs that are inside ANY element with id="DIV"... and it especially does NOT select the containing "div" (or #div)</p>
<p>// &lt;a&gt; with class .external<br />
jQuery('a').filter('.external')</p>
<p>extremely silly example as there's no reason not to just say jQuery('a.external') which would be way faster... maybe if you had said jQuery('a').css('border', '1px solid red').filter('.external').css('border', '1px solid blue') that would've made more sense</p>
<p>etc...</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jared</title>
		<link>http://new2wp.com/noob/a-complete-guide-to-jquery-learning-the-basics/comment-page-1/#comment-91</link>
		<dc:creator>Jared</dc:creator>
		<pubDate>Wed, 03 Mar 2010 16:58:16 +0000</pubDate>
		<guid isPermaLink="false">http://new2wp.com/?p=433#comment-91</guid>
		<description>I have updated the post, I realized it wasn&#039;t as &quot;complete&quot; as I thought. If you still find errors please let me know.</description>
		<content:encoded><![CDATA[<p>I have updated the post, I realized it wasn't as "complete" as I thought. If you still find errors please let me know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luka Kladaric</title>
		<link>http://new2wp.com/noob/a-complete-guide-to-jquery-learning-the-basics/comment-page-1/#comment-87</link>
		<dc:creator>Luka Kladaric</dc:creator>
		<pubDate>Wed, 03 Mar 2010 10:31:41 +0000</pubDate>
		<guid isPermaLink="false">http://new2wp.com/?p=433#comment-87</guid>
		<description>kudos for trying to do this, but unfortunately the text is FULL of MAJOR errors</description>
		<content:encoded><![CDATA[<p>kudos for trying to do this, but unfortunately the text is FULL of MAJOR errors</p>
]]></content:encoded>
	</item>
</channel>
</rss>

