<?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: 3 reasons why you should let Google host jQuery for you</title>
	<atom:link href="http://encosia.com/3-reasons-why-you-should-let-google-host-jquery-for-you/feed/" rel="self" type="application/rss+xml" />
	<link>http://encosia.com/3-reasons-why-you-should-let-google-host-jquery-for-you/</link>
	<description>ASP.NET and AJAX code, ideas, and examples.</description>
	<lastBuildDate>Wed, 16 May 2012 23:02:53 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Michael</title>
		<link>http://encosia.com/3-reasons-why-you-should-let-google-host-jquery-for-you/#comment-69905</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Wed, 16 May 2012 14:59:15 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=740#comment-69905</guid>
		<description>It&#039;s always good to fall back to the local copy if for some reason Google&#039;s CDN cannot be accessed. &lt;strong&gt;yepnope&lt;/b&gt; is good for this:

&lt;pre lang=&quot;javascript&quot;&gt;      // Load the jQuery library
      yepnope([
      {

        // Load the jQuery library from Google&#039;s AJAX API CDN
        load: &#039;//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js&#039;,

        // Determine if the local copy of the jQuery library needs to be loaded
        callback: function()
        {

          // If the jQuery library could not be loaded then load the local copy
          if (!window.jQuery)
          {
            yepnope(&#039;/includes/js/jquery.1-7-2.js&#039;);
          }

        }

      }
      ]);&lt;/pre&gt;

You can download it from http://yepnopejs.com/.</description>
		<content:encoded><![CDATA[<p>It&#8217;s always good to fall back to the local copy if for some reason Google&#8217;s CDN cannot be accessed. <strong>yepnope is good for this:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">      <span style="color: #006600; font-style: italic;">// Load the jQuery library</span>
      yepnope<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#91;</span>
      <span style="color: #009900;">&#123;</span>
&nbsp;
        <span style="color: #006600; font-style: italic;">// Load the jQuery library from Google's AJAX API CDN</span>
        load<span style="color: #339933;">:</span> <span style="color: #3366CC;">'//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'</span><span style="color: #339933;">,</span>
&nbsp;
        <span style="color: #006600; font-style: italic;">// Determine if the local copy of the jQuery library needs to be loaded</span>
        callback<span style="color: #339933;">:</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>
&nbsp;
          <span style="color: #006600; font-style: italic;">// If the jQuery library could not be loaded then load the local copy</span>
          <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>window.<span style="color: #660066;">jQuery</span><span style="color: #009900;">&#41;</span>
          <span style="color: #009900;">&#123;</span>
            yepnope<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'/includes/js/jquery.1-7-2.js'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
          <span style="color: #009900;">&#125;</span>
&nbsp;
        <span style="color: #009900;">&#125;</span>
&nbsp;
      <span style="color: #009900;">&#125;</span>
      <span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>You can download it from <a href="http://yepnopejs.com/" rel="nofollow">http://yepnopejs.com/</a>.</strong></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How to: AJAX Contact Form Using jQuery &#124; Crafted by David</title>
		<link>http://encosia.com/3-reasons-why-you-should-let-google-host-jquery-for-you/#comment-69735</link>
		<dc:creator>How to: AJAX Contact Form Using jQuery &#124; Crafted by David</dc:creator>
		<pubDate>Tue, 15 May 2012 22:14:13 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=740#comment-69735</guid>
		<description>[...] generally use Google to host my jQuery &#8211; if you&#8217;re wondering why take a look at &#8216;3 reasons why you should let Google host jQuery for you&#8216; by Dave [...]</description>
		<content:encoded><![CDATA[<p>[...] generally use Google to host my jQuery &#8211; if you&#8217;re wondering why take a look at &#8216;3 reasons why you should let Google host jQuery for you&#8216; by Dave [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nando Vieira</title>
		<link>http://encosia.com/3-reasons-why-you-should-let-google-host-jquery-for-you/#comment-69499</link>
		<dc:creator>Nando Vieira</dc:creator>
		<pubDate>Mon, 14 May 2012 19:49:05 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=740#comment-69499</guid>
		<description>Definitely not doing wrong, if you decide hosting jQuery yourself. Google CDN takes some time before adding a new release. 

I just prefer having it on my side, compressed, gzipped, and merged with other files.</description>
		<content:encoded><![CDATA[<p>Definitely not doing wrong, if you decide hosting jQuery yourself. Google CDN takes some time before adding a new release. </p>
<p>I just prefer having it on my side, compressed, gzipped, and merged with other files.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mick Sear</title>
		<link>http://encosia.com/3-reasons-why-you-should-let-google-host-jquery-for-you/#comment-69496</link>
		<dc:creator>Mick Sear</dc:creator>
		<pubDate>Mon, 14 May 2012 19:34:50 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=740#comment-69496</guid>
		<description>I&#039;d generally avoid pulling in JQuery from Google, because I&#039;ve seen this a lot as well - You see it in the browser status bar: &#039;Looking up ajax.googleapis.com&#039;, etc.  I&#039;ve seen sites that pull in dependencies from four or five different domains, and each one requires a DNS lookup and then a TCP connection needs to be established.  Unfortunately, although many ISPs offer nice fast bandwidth, they sadly don&#039;t offer the same experience with their DNS servers.

Of course, some users will benefit from CDNs, but many users will feel the opposite effect.</description>
		<content:encoded><![CDATA[<p>I&#8217;d generally avoid pulling in JQuery from Google, because I&#8217;ve seen this a lot as well &#8211; You see it in the browser status bar: &#8216;Looking up ajax.googleapis.com&#8217;, etc.  I&#8217;ve seen sites that pull in dependencies from four or five different domains, and each one requires a DNS lookup and then a TCP connection needs to be established.  Unfortunately, although many ISPs offer nice fast bandwidth, they sadly don&#8217;t offer the same experience with their DNS servers.</p>
<p>Of course, some users will benefit from CDNs, but many users will feel the opposite effect.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bedrijf</title>
		<link>http://encosia.com/3-reasons-why-you-should-let-google-host-jquery-for-you/#comment-65617</link>
		<dc:creator>bedrijf</dc:creator>
		<pubDate>Fri, 27 Apr 2012 21:07:08 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=740#comment-65617</guid>
		<description>In general, in order to keep page load times to a minimum, it&#039;s best to call any Javascript at the end of the page, because if a script is slow to load from an external server, it may cause the whole page to hang.</description>
		<content:encoded><![CDATA[<p>In general, in order to keep page load times to a minimum, it&#8217;s best to call any Javascript at the end of the page, because if a script is slow to load from an external server, it may cause the whole page to hang.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arman P.</title>
		<link>http://encosia.com/3-reasons-why-you-should-let-google-host-jquery-for-you/#comment-64227</link>
		<dc:creator>Arman P.</dc:creator>
		<pubDate>Sat, 21 Apr 2012 13:00:29 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=740#comment-64227</guid>
		<description>Good article. I think any web developer must use Google CDN and understand its&#039; benefits.
Though I will recommend to expand a little bit this approach, to be sure that jQuery is loaded even in the case when Google CDN is down (inaccessible), this approach also helps with local web site development without internet connection:

&lt;pre lang=&quot;html&quot;&gt;
&lt;script src=&quot;//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js&quot;&gt;&lt;/script&gt;
&lt;script&gt;!window.jQuery &amp;&amp; document.write(&#039;&lt;script src=&quot;js/jquery-1.7.2.min.js&quot;&gt;&lt;\/script&gt;&#039;)&lt;/script&gt;
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Good article. I think any web developer must use Google CDN and understand its&#8217; benefits.<br />
Though I will recommend to expand a little bit this approach, to be sure that jQuery is loaded even in the case when Google CDN is down (inaccessible), this approach also helps with local web site development without internet connection:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;script</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span>script&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;script&gt;</span></span>!window.jQuery <span style="color: #ddbb00;">&amp;&amp; document.write('&lt;script src=&quot;js/jquery-1.7.2.min.js&quot;&gt;&lt;\/script&gt;')&lt;/script&gt;</span></pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>By: IVI</title>
		<link>http://encosia.com/3-reasons-why-you-should-let-google-host-jquery-for-you/#comment-63969</link>
		<dc:creator>IVI</dc:creator>
		<pubDate>Thu, 19 Apr 2012 09:20:30 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=740#comment-63969</guid>
		<description>For Android (&amp; other phone) applications, the cost of data to load jQuery from any external (ie, off-phone) host can be prohibitive of using the article&#039;s suggestion.

Of course, one could insist that an off-phone host be limited to those times (normally few) when it can be loaded via WiFi, rather than via the phone&#039;s costly non-WiFi data connection.

That could be implemented by a data source test &amp; a decision to use the local jQuery.js file when anything other than WiFi would be used to bring it in from elsewhere.</description>
		<content:encoded><![CDATA[<p>For Android (&amp; other phone) applications, the cost of data to load jQuery from any external (ie, off-phone) host can be prohibitive of using the article&#8217;s suggestion.</p>
<p>Of course, one could insist that an off-phone host be limited to those times (normally few) when it can be loaded via WiFi, rather than via the phone&#8217;s costly non-WiFi data connection.</p>
<p>That could be implemented by a data source test &amp; a decision to use the local jQuery.js file when anything other than WiFi would be used to bring it in from elsewhere.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin P. Rice</title>
		<link>http://encosia.com/3-reasons-why-you-should-let-google-host-jquery-for-you/#comment-63713</link>
		<dc:creator>Kevin P. Rice</dc:creator>
		<pubDate>Thu, 12 Apr 2012 05:35:59 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=740#comment-63713</guid>
		<description>Dave,

When I first read this a couple years ago I was totally sold. Now, I&#039;m switching back to local.

(1) PRIVACY, PRIVACY, PRIVACY. Google is evil. They really are. And if they aren&#039;t yet, they will be. Or they will be compromised by government.

(2) I can set caching for one year also.

(3) I&#039;ve now set up my own static domain to address parallelism and cookies.

AND THE BIG CDN KILLER...

(4) The latest server technologies automatically combine multiple .js and .css resources into one download, and minifies them and compresses them at the same time. There is now less penalty to maintaining customized jQuery and other resources locally.

GREAT ARTICLE, NEVERTHELESS! THANKS! Your arguments remain powerful ones but I think the benefits can be reasonably reaped without sacrificing privacy.

Best wishes!!!</description>
		<content:encoded><![CDATA[<p>Dave,</p>
<p>When I first read this a couple years ago I was totally sold. Now, I&#8217;m switching back to local.</p>
<p>(1) PRIVACY, PRIVACY, PRIVACY. Google is evil. They really are. And if they aren&#8217;t yet, they will be. Or they will be compromised by government.</p>
<p>(2) I can set caching for one year also.</p>
<p>(3) I&#8217;ve now set up my own static domain to address parallelism and cookies.</p>
<p>AND THE BIG CDN KILLER&#8230;</p>
<p>(4) The latest server technologies automatically combine multiple .js and .css resources into one download, and minifies them and compresses them at the same time. There is now less penalty to maintaining customized jQuery and other resources locally.</p>
<p>GREAT ARTICLE, NEVERTHELESS! THANKS! Your arguments remain powerful ones but I think the benefits can be reasonably reaped without sacrificing privacy.</p>
<p>Best wishes!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Ward</title>
		<link>http://encosia.com/3-reasons-why-you-should-let-google-host-jquery-for-you/#comment-63507</link>
		<dc:creator>Dave Ward</dc:creator>
		<pubDate>Thu, 05 Apr 2012 18:59:49 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=740#comment-63507</guid>
		<description>This page you&#039;re commenting on, with social sharing widgets, ads, images, and nearly 400 comments only weighs in at 365kb (&lt;a href=&quot;http://tools.pingdom.com/fpt/#!/i1H3g9KmX/http://encosia.com/3-reasons-why-you-should-let-google-host-jquery-for-you/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;at the time I&#039;m writing this&lt;/a&gt;). jQuery 1.7.2&#039;s 33kb is nearly 10% of that; not negligible.

You&#039;re right that it&#039;s a good idea to prepare for situations where the CDN is inaccessible, but &lt;a href=&quot;http://weblogs.asp.net/jgalloway/archive/2010/01/21/using-cdn-hosted-jquery-with-a-local-fall-back-copy.aspx&quot; rel=&quot;nofollow&quot;&gt;falling back to a local copy in those situations is simple&lt;/a&gt;.

As for the security FUD, those doubts have been raised before, but I don&#039;t find them credible. It&#039;s far, far more likely that your own server will be hacked than Google&#039;s hardened CDN. On the other hand, if the Google CDN were hacked, that would be front page news within minutes and remedied immediately, whereas orders of magnitude less eyeballs are watching the assets on your server for you. This is one case where you&#039;re actually safer sticking with the herd, IMO.</description>
		<content:encoded><![CDATA[<p>This page you&#8217;re commenting on, with social sharing widgets, ads, images, and nearly 400 comments only weighs in at 365kb (<a href="http://tools.pingdom.com/fpt/#!/i1H3g9KmX/http://encosia.com/3-reasons-why-you-should-let-google-host-jquery-for-you/" target="_blank" rel="nofollow">at the time I&#8217;m writing this</a>). jQuery 1.7.2&#8242;s 33kb is nearly 10% of that; not negligible.</p>
<p>You&#8217;re right that it&#8217;s a good idea to prepare for situations where the CDN is inaccessible, but <a href="http://weblogs.asp.net/jgalloway/archive/2010/01/21/using-cdn-hosted-jquery-with-a-local-fall-back-copy.aspx" rel="nofollow">falling back to a local copy in those situations is simple</a>.</p>
<p>As for the security FUD, those doubts have been raised before, but I don&#8217;t find them credible. It&#8217;s far, far more likely that your own server will be hacked than Google&#8217;s hardened CDN. On the other hand, if the Google CDN were hacked, that would be front page news within minutes and remedied immediately, whereas orders of magnitude less eyeballs are watching the assets on your server for you. This is one case where you&#8217;re actually safer sticking with the herd, IMO.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ivan</title>
		<link>http://encosia.com/3-reasons-why-you-should-let-google-host-jquery-for-you/#comment-63506</link>
		<dc:creator>Ivan</dc:creator>
		<pubDate>Thu, 05 Apr 2012 17:53:18 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=740#comment-63506</guid>
		<description>With average website page nearing 1Mb these days, for me a 28K is a negligible tradeoff for being absolutely sure that my website will be functional no matter what happens to Google CDN. 

1. It may be down or inaccessible (just google for ajax.googleapis.com and see how many ppl have problems)
2. It may be blocked by your firewall or your sysadmin
3. It may be phished for a malicious code
4. Google might decide to change the naming conventions (happened to my AppEngine site once)
5. You can not run your website on a local network

etc...</description>
		<content:encoded><![CDATA[<p>With average website page nearing 1Mb these days, for me a 28K is a negligible tradeoff for being absolutely sure that my website will be functional no matter what happens to Google CDN. </p>
<p>1. It may be down or inaccessible (just google for ajax.googleapis.com and see how many ppl have problems)<br />
2. It may be blocked by your firewall or your sysadmin<br />
3. It may be phished for a malicious code<br />
4. Google might decide to change the naming conventions (happened to my AppEngine site once)<br />
5. You can not run your website on a local network</p>
<p>etc&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Loading jQuery from Google CDN and dependent scripts in WordPress &#124; Yen&#039;s Blog</title>
		<link>http://encosia.com/3-reasons-why-you-should-let-google-host-jquery-for-you/#comment-63429</link>
		<dc:creator>Loading jQuery from Google CDN and dependent scripts in WordPress &#124; Yen&#039;s Blog</dc:creator>
		<pubDate>Tue, 03 Apr 2012 05:39:46 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=740#comment-63429</guid>
		<description>[...] wanted to load jQuery from Google&#8217;s Content Delivery Network (why?). My initial attempt was to simply change the URL for the jQuery reference to the [...]</description>
		<content:encoded><![CDATA[<p>[...] wanted to load jQuery from Google&#8217;s Content Delivery Network (why?). My initial attempt was to simply change the URL for the jQuery reference to the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Henry</title>
		<link>http://encosia.com/3-reasons-why-you-should-let-google-host-jquery-for-you/#comment-63427</link>
		<dc:creator>Henry</dc:creator>
		<pubDate>Tue, 03 Apr 2012 02:33:46 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=740#comment-63427</guid>
		<description>I use WordPress and having my own server cope with loading jQuery really seemed to slow my site down. After going with your CDN approach, my site now loads a whole 2 seconds quicker (testing with Pingdom).

http://codex.wordpress.org/Function_Reference/wp_enqueue_script</description>
		<content:encoded><![CDATA[<p>I use WordPress and having my own server cope with loading jQuery really seemed to slow my site down. After going with your CDN approach, my site now loads a whole 2 seconds quicker (testing with Pingdom).</p>
<p><a href="http://codex.wordpress.org/Function_Reference/wp_enqueue_script" rel="nofollow">http://codex.wordpress.org/Function_Reference/wp_enqueue_script</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Ward</title>
		<link>http://encosia.com/3-reasons-why-you-should-let-google-host-jquery-for-you/#comment-63331</link>
		<dc:creator>Dave Ward</dc:creator>
		<pubDate>Wed, 21 Mar 2012 15:39:51 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=740#comment-63331</guid>
		<description>Fragmentation is a legitimate issue, but you have to keep in mind that a single CDN reference in the top sites that he&#039;s looking at will prime millions of browser caches each day. Coverage doesn&#039;t need to be as thorough as you might intuitively think.

Also, his analysis didn&#039;t go far enough. When you confine your analysis to larger sites, it&#039;s much more likely that they&#039;ll have their own CDN in place and not care to use a third party. When I did something similar a couple years ago, but took my crawler all the way down the top 1,000,000 sites (by Alexa ranking), I found that references to the Google CDN increased the further down that long tail that I went. So many WordPress themes, sites using H5BP, and other starting points use the CDN reference that its coverage among all sorts of new and/or niche sites is really great.

Putting those two facts together, I stand by my recommendation to use Google&#039;s CDN for jQuery.</description>
		<content:encoded><![CDATA[<p>Fragmentation is a legitimate issue, but you have to keep in mind that a single CDN reference in the top sites that he&#8217;s looking at will prime millions of browser caches each day. Coverage doesn&#8217;t need to be as thorough as you might intuitively think.</p>
<p>Also, his analysis didn&#8217;t go far enough. When you confine your analysis to larger sites, it&#8217;s much more likely that they&#8217;ll have their own CDN in place and not care to use a third party. When I did something similar a couple years ago, but took my crawler all the way down the top 1,000,000 sites (by Alexa ranking), I found that references to the Google CDN increased the further down that long tail that I went. So many WordPress themes, sites using H5BP, and other starting points use the CDN reference that its coverage among all sorts of new and/or niche sites is really great.</p>
<p>Putting those two facts together, I stand by my recommendation to use Google&#8217;s CDN for jQuery.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Drosan</title>
		<link>http://encosia.com/3-reasons-why-you-should-let-google-host-jquery-for-you/#comment-63329</link>
		<dc:creator>Drosan</dc:creator>
		<pubDate>Wed, 21 Mar 2012 15:20:11 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=740#comment-63329</guid>
		<description>The benefits being shared here and elsewhere are all theoretical. Just came across an in-depth analysis of using a CDN and if it provides the expected performance benefits.
http://www.root777.com/appdev/does-using-google-libraries-api-cdn-give-you-performance-benefits</description>
		<content:encoded><![CDATA[<p>The benefits being shared here and elsewhere are all theoretical. Just came across an in-depth analysis of using a CDN and if it provides the expected performance benefits.<br />
<a href="http://www.root777.com/appdev/does-using-google-libraries-api-cdn-give-you-performance-benefits" rel="nofollow">http://www.root777.com/appdev/does-using-google-libraries-api-cdn-give-you-performance-benefits</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: slidebox jquery banner rotator</title>
		<link>http://encosia.com/3-reasons-why-you-should-let-google-host-jquery-for-you/#comment-63280</link>
		<dc:creator>slidebox jquery banner rotator</dc:creator>
		<pubDate>Wed, 14 Mar 2012 12:36:49 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=740#comment-63280</guid>
		<description>[...] The code above can be inserted inside the head tag or at the very bottom of your document (which is normally recommended for better performance). In either case, it&#8217;s more efficient to include the css file before any javascript (usually inside the head tag). Notice that we&#8217;re using Google&#8217;s CDN to get jquery and jquery UI libraries (why?). [...]</description>
		<content:encoded><![CDATA[<p>[...] The code above can be inserted inside the head tag or at the very bottom of your document (which is normally recommended for better performance). In either case, it&#8217;s more efficient to include the css file before any javascript (usually inside the head tag). Notice that we&#8217;re using Google&#8217;s CDN to get jquery and jquery UI libraries (why?). [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

