<?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: 7 Really Useful Tips For Better jQuery Code</title>
	<atom:link href="http://addyosmani.com/blog/7-really-useful-tips-for-better-jquery-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://addyosmani.com/blog/7-really-useful-tips-for-better-jquery-code/</link>
	<description>This is the home of Addy Osmani (Web Developer, Designer &#38; Author). Here you can find some great tips and tutorials on everything to do with web development and even a few useful code samples!</description>
	<lastBuildDate>Fri, 30 Jul 2010 04:17:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: peninggi badan</title>
		<link>http://addyosmani.com/blog/7-really-useful-tips-for-better-jquery-code/comment-page-1/#comment-2724</link>
		<dc:creator>peninggi badan</dc:creator>
		<pubDate>Wed, 23 Jun 2010 05:10:24 +0000</pubDate>
		<guid isPermaLink="false">http://addyosmani.com/blog/5-really-useful-tips-for-better-jquery-code/#comment-2724</guid>
		<description>I would recommend using it &#8211; everything inside it loads up as soon as the DOM does and even before the rest of your page&#8217;s contents have. It&#8217;ll also allow you to attach events to any of the elements on your page and it won&#8217;t interfere with their mark-up. </description>
		<content:encoded><![CDATA[<p>I would recommend using it &ndash; everything inside it loads up as soon as the DOM does and even before the rest of your page&rsquo;s contents have. It&rsquo;ll also allow you to attach events to any of the elements on your page and it won&rsquo;t interfere with their mark-up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ultimate collection of top jQuery tutorials, tips-tricks and techniques to improve performance</title>
		<link>http://addyosmani.com/blog/7-really-useful-tips-for-better-jquery-code/comment-page-1/#comment-2717</link>
		<dc:creator>Ultimate collection of top jQuery tutorials, tips-tricks and techniques to improve performance</dc:creator>
		<pubDate>Tue, 22 Jun 2010 10:56:11 +0000</pubDate>
		<guid isPermaLink="false">http://addyosmani.com/blog/5-really-useful-tips-for-better-jquery-code/#comment-2717</guid>
		<description>[...] 7 Really Useful Tips For Better jQuery Code [...]</description>
		<content:encoded><![CDATA[<p>[...] 7 Really Useful Tips For Better jQuery Code [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dominik Hahn</title>
		<link>http://addyosmani.com/blog/7-really-useful-tips-for-better-jquery-code/comment-page-1/#comment-485</link>
		<dc:creator>Dominik Hahn</dc:creator>
		<pubDate>Thu, 12 Nov 2009 16:34:29 +0000</pubDate>
		<guid isPermaLink="false">http://addyosmani.com/blog/5-really-useful-tips-for-better-jquery-code/#comment-485</guid>
		<description>Rather than doing this: 
var $q = $(&#8216;div.hi&#8217;); 
$q.css(&#8216;color&#8217;, &#8216;#ffffff&#8217;); 
$q.text(&#8216;hello world&#8217;); 
$q.addClass(&#8216;amazingclass&#8217;); 
 
 
Do this: 
$(&#8216;div.hi&#8217;).css(&#8216;color&#8217;, &#8216;#ffffff&#8217;).text(&#8216;hello world&#8217;).addClass(&#8216;amazingclass&#8217;); 
 
 
;-) 
 </description>
		<content:encoded><![CDATA[<p>Rather than doing this:<br />
var $q = $(&lsquo;div.hi&rsquo;);<br />
$q.css(&lsquo;color&rsquo;, &lsquo;#ffffff&rsquo;);<br />
$q.text(&lsquo;hello world&rsquo;);<br />
$q.addClass(&lsquo;amazingclass&rsquo;); </p>
<p>Do this:<br />
$(&lsquo;div.hi&rsquo;).css(&lsquo;color&rsquo;, &lsquo;#ffffff&rsquo;).text(&lsquo;hello world&rsquo;).addClass(&lsquo;amazingclass&rsquo;); </p>
<p>  <img src='http://addyosmani.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dominik Hahn</title>
		<link>http://addyosmani.com/blog/7-really-useful-tips-for-better-jquery-code/comment-page-1/#comment-968</link>
		<dc:creator>Dominik Hahn</dc:creator>
		<pubDate>Thu, 12 Nov 2009 16:34:29 +0000</pubDate>
		<guid isPermaLink="false">http://addyosmani.com/blog/5-really-useful-tips-for-better-jquery-code/#comment-968</guid>
		<description>Rather than doing this:
var $q = $(&#8216;div.hi&#8217;);
$q.css(&#8216;color&#8217;, &#8216;#ffffff&#8217;);
$q.text(&#8216;hello world&#8217;);
$q.addClass(&#8216;amazingclass&#8217;);


Do this:
$(&#8216;div.hi&#8217;).css(&#8216;color&#8217;, &#8216;#ffffff&#8217;).text(&#8216;hello world&#8217;).addClass(&#8216;amazingclass&#8217;);


;-)</description>
		<content:encoded><![CDATA[<p>Rather than doing this:<br />
var $q = $(&lsquo;div.hi&rsquo;);<br />
$q.css(&lsquo;color&rsquo;, &lsquo;#ffffff&rsquo;);<br />
$q.text(&lsquo;hello world&rsquo;);<br />
$q.addClass(&lsquo;amazingclass&rsquo;);</p>
<p>Do this:<br />
$(&lsquo;div.hi&rsquo;).css(&lsquo;color&rsquo;, &lsquo;#ffffff&rsquo;).text(&lsquo;hello world&rsquo;).addClass(&lsquo;amazingclass&rsquo;);</p>
<p> <img src='http://addyosmani.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick Johnson</title>
		<link>http://addyosmani.com/blog/7-really-useful-tips-for-better-jquery-code/comment-page-1/#comment-484</link>
		<dc:creator>Nick Johnson</dc:creator>
		<pubDate>Thu, 12 Nov 2009 16:13:49 +0000</pubDate>
		<guid isPermaLink="false">http://addyosmani.com/blog/5-really-useful-tips-for-better-jquery-code/#comment-484</guid>
		<description>Excellent article Addy. Since I started using jQuery back in &#039;07, interface development has been fun. I am not always having to write a special set of functions to handle basic tasks. I like standardization.  
 
BTW :eq() uses zero-based indexing, so :eq(5) would actually grab the 6th div.  
 
Keep up the good work! </description>
		<content:encoded><![CDATA[<p>Excellent article Addy. Since I started using jQuery back in &#039;07, interface development has been fun. I am not always having to write a special set of functions to handle basic tasks. I like standardization.  </p>
<p>BTW :eq() uses zero-based indexing, so :eq(5) would actually grab the 6th div.  </p>
<p>Keep up the good work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick Johnson</title>
		<link>http://addyosmani.com/blog/7-really-useful-tips-for-better-jquery-code/comment-page-1/#comment-967</link>
		<dc:creator>Nick Johnson</dc:creator>
		<pubDate>Thu, 12 Nov 2009 16:13:49 +0000</pubDate>
		<guid isPermaLink="false">http://addyosmani.com/blog/5-really-useful-tips-for-better-jquery-code/#comment-967</guid>
		<description>Excellent article Addy. Since I started using jQuery back in &#039;07, interface development has been fun. I am not always having to write a special set of functions to handle basic tasks. I like standardization.

BTW :eq() uses zero-based indexing, so :eq(5) would actually grab the 6th div.

Keep up the good work!</description>
		<content:encoded><![CDATA[<p>Excellent article Addy. Since I started using jQuery back in &#039;07, interface development has been fun. I am not always having to write a special set of functions to handle basic tasks. I like standardization.</p>
<p>BTW :eq() uses zero-based indexing, so :eq(5) would actually grab the 6th div.</p>
<p>Keep up the good work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CSS Brigit &#124; 7 Really Useful Tips For Better jQuery Code</title>
		<link>http://addyosmani.com/blog/7-really-useful-tips-for-better-jquery-code/comment-page-1/#comment-479</link>
		<dc:creator>CSS Brigit &#124; 7 Really Useful Tips For Better jQuery Code</dc:creator>
		<pubDate>Thu, 12 Nov 2009 12:37:04 +0000</pubDate>
		<guid isPermaLink="false">http://addyosmani.com/blog/5-really-useful-tips-for-better-jquery-code/#comment-479</guid>
		<description>&lt;strong&gt; 7 Really Useful Tips For Better jQuery Code...&lt;/strong&gt;

jQuery is an incredibly versatile way of using JavaScript and today I thought I&#039;d share some tips that will help you do things better....</description>
		<content:encoded><![CDATA[<p><strong> 7 Really Useful Tips For Better jQuery Code&#8230;</strong></p>
<p>jQuery is an incredibly versatile way of using JavaScript and today I thought I&#39;d share some tips that will help you do things better&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CSS Brigit &#124; 7 Really Useful Tips For Better jQuery Code</title>
		<link>http://addyosmani.com/blog/7-really-useful-tips-for-better-jquery-code/comment-page-1/#comment-966</link>
		<dc:creator>CSS Brigit &#124; 7 Really Useful Tips For Better jQuery Code</dc:creator>
		<pubDate>Thu, 12 Nov 2009 12:37:04 +0000</pubDate>
		<guid isPermaLink="false">http://addyosmani.com/blog/5-really-useful-tips-for-better-jquery-code/#comment-966</guid>
		<description>&lt;strong&gt; 7 Really Useful Tips For Better jQuery Code...&lt;/strong&gt;

jQuery is an incredibly versatile way of using JavaScript and today I thought I&#039;d share some tips that will help you do things better....</description>
		<content:encoded><![CDATA[<p><strong> 7 Really Useful Tips For Better jQuery Code&#8230;</strong></p>
<p>jQuery is an incredibly versatile way of using JavaScript and today I thought I&#39;d share some tips that will help you do things better&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 網站製作學習誌 &#187; [Web] 連結分享</title>
		<link>http://addyosmani.com/blog/7-really-useful-tips-for-better-jquery-code/comment-page-1/#comment-267</link>
		<dc:creator>網站製作學習誌 &#187; [Web] 連結分享</dc:creator>
		<pubDate>Wed, 07 Oct 2009 11:37:51 +0000</pubDate>
		<guid isPermaLink="false">http://addyosmani.com/blog/5-really-useful-tips-for-better-jquery-code/#comment-267</guid>
		<description>[...] 7 Really Useful Tips For Better jQuery Code [...]</description>
		<content:encoded><![CDATA[<p>[...] 7 Really Useful Tips For Better jQuery Code [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 網站製作學習誌 &#187; [Web] 連結分享</title>
		<link>http://addyosmani.com/blog/7-really-useful-tips-for-better-jquery-code/comment-page-1/#comment-971</link>
		<dc:creator>網站製作學習誌 &#187; [Web] 連結分享</dc:creator>
		<pubDate>Wed, 07 Oct 2009 11:37:51 +0000</pubDate>
		<guid isPermaLink="false">http://addyosmani.com/blog/5-really-useful-tips-for-better-jquery-code/#comment-971</guid>
		<description>[...] 7 Really Useful Tips For Better jQuery Code [...]</description>
		<content:encoded><![CDATA[<p>[...] 7 Really Useful Tips For Better jQuery Code [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
