<?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: Simple and Clean Menus with jQuery</title>
	<atom:link href="http://blog.westhost.com/2009/03/25/simple-and-clean-menus-with-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.westhost.com/blog/2009/03/25/simple-and-clean-menus-with-jquery/</link>
	<description>News, Announcements &#38; More</description>
	<lastBuildDate>Tue, 01 Nov 2011 13:20:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Steve</title>
		<link>http://www.westhost.com/blog/2009/03/25/simple-and-clean-menus-with-jquery/comment-page-1/#comment-9695</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Fri, 08 May 2009 21:35:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.westhost.com/blog/?p=231#comment-9695</guid>
		<description>You can also use Google&#039;s AJAX APIs to access their hosted jQuery -- find out how at:

http://code.google.com/apis/ajax/documentation/
http://code.google.com/apis/ajaxlibs/

In a nutshell:

&lt;!-- If you have a key, put it in place of &quot;ABCDEF&quot;.  To get a key, go here: http://code.google.com/apis/ajaxsearch/signup.html --&gt;
 

&lt;!-- If you don&#039;t have a key (or choose to not use one) do it this way: --&gt;
 

&lt;!-- the key isn&#039;t mandatory, but using one allows Google to contact you in case something goes wrong (i.e. &quot;coach&quot; you to getting it right ;) --&gt;


//


Advantage of doing it this way?  Here&#039;s a discussion: http://stackoverflow.com/questions/208869/what-are-advantages-of-using-google-loadjquery-vs-direct-inclusion-of-ho</description>
		<content:encoded><![CDATA[<p>You can also use Google&#8217;s AJAX APIs to access their hosted jQuery &#8212; find out how at:</p>
<p><a href="http://code.google.com/apis/ajax/documentation/" rel="nofollow">http://code.google.com/apis/ajax/documentation/</a><br />
<a href="http://code.google.com/apis/ajaxlibs/" rel="nofollow">http://code.google.com/apis/ajaxlibs/</a></p>
<p>In a nutshell:</p>
<p><!-- If you have a key, put it in place of "ABCDEF".  To get a key, go here: <a href="http://code.google.com/apis/ajaxsearch/signup.html" rel="nofollow">http://code.google.com/apis/ajaxsearch/signup.html &#8211;></p>
<p><!-- If you don't have a key (or choose to not use one) do it this way: --></p>
<p><!-- the key isn't mandatory, but using one allows Google to contact you in case something goes wrong (i.e. "coach" you to getting it right ;) --></p>
<p>//</p>
<p>Advantage of doing it this way?  Here&#8217;s a discussion: <a href="http://stackoverflow.com/questions/208869/what-are-advantages-of-using-google-loadjquery-vs-direct-inclusion-of-ho" rel="nofollow">http://stackoverflow.com/questions/208869/what-are-advantages-of-using-google-loadjquery-vs-direct-inclusion-of-ho</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://www.westhost.com/blog/2009/03/25/simple-and-clean-menus-with-jquery/comment-page-1/#comment-9609</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Wed, 06 May 2009 22:12:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.westhost.com/blog/?p=231#comment-9609</guid>
		<description>Just a minor clarification:

If you use the &quot;googlecode&quot; path, you don&#039;t even have to download jQuery!  Google hosts jQuery on their network of datacenters, so no matter where the client is, they are likely to get a closer (faster) connect to jQuery than if you host it yourself (e.g. on WestHost).  For more &quot;convincing&quot; check out:

   http://encosia.com/2008/12/10/3-reasons-why-you-should-let-google-host-jquery-for-you/
</description>
		<content:encoded><![CDATA[<p>Just a minor clarification:</p>
<p>If you use the &#8220;googlecode&#8221; path, you don&#8217;t even have to download jQuery!  Google hosts jQuery on their network of datacenters, so no matter where the client is, they are likely to get a closer (faster) connect to jQuery than if you host it yourself (e.g. on WestHost).  For more &#8220;convincing&#8221; check out:</p>
<p>   <a href="http://encosia.com/2008/12/10/3-reasons-why-you-should-let-google-host-jquery-for-you/" rel="nofollow">http://encosia.com/2008/12/10/3-reasons-why-you-should-let-google-host-jquery-for-you/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Michaelis</title>
		<link>http://www.westhost.com/blog/2009/03/25/simple-and-clean-menus-with-jquery/comment-page-1/#comment-9572</link>
		<dc:creator>Chris Michaelis</dc:creator>
		<pubDate>Tue, 05 May 2009 20:27:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.westhost.com/blog/?p=231#comment-9572</guid>
		<description>Hi Carlos,

Since jQuery is just a JavaScript library, there&#x2019;s nothing really to install. The JRE is a separate thing entirely - although they are very similar in name, JavaScript (the language jQuery is written in) and Java (for which JRE is the runtime environment) are separate languages. They share some similarities, but are pretty heavily different.

Installing jQuery can be done by downloading http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js and saving it along with the .html or .php files for your website. You would then reference it in your page by adding a script tag in the head section of your web page, like this:

&lt;html&gt;
...
&lt;head&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;
...
&lt;/html&gt;

Be sure to end the script tag with &lt;/script&gt; or some browsers - most notably Internet Explorer - will just show a blank page when visiting your site.

I hope that helps!
&#x2013;Chris</description>
		<content:encoded><![CDATA[<p>Hi Carlos,</p>
<p>Since jQuery is just a JavaScript library, there&#x2019;s nothing really to install. The JRE is a separate thing entirely &#8211; although they are very similar in name, JavaScript (the language jQuery is written in) and Java (for which JRE is the runtime environment) are separate languages. They share some similarities, but are pretty heavily different.</p>
<p>Installing jQuery can be done by downloading <a href="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js" rel="nofollow">http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js</a> and saving it along with the .html or .php files for your website. You would then reference it in your page by adding a script tag in the head section of your web page, like this:</p>
<p>&lt;html&gt;<br />
&#8230;<br />
&lt;head&gt;<br />
&lt;script type=&quot;text/javascript&quot; src=&quot;http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js&quot;&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&#8230;<br />
&lt;/html&gt;</p>
<p>Be sure to end the script tag with &lt;/script&gt; or some browsers &#8211; most notably Internet Explorer &#8211; will just show a blank page when visiting your site.</p>
<p>I hope that helps!<br />
&#x2013;Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: UK Web Hosting Dude</title>
		<link>http://www.westhost.com/blog/2009/03/25/simple-and-clean-menus-with-jquery/comment-page-1/#comment-9550</link>
		<dc:creator>UK Web Hosting Dude</dc:creator>
		<pubDate>Tue, 05 May 2009 11:22:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.westhost.com/blog/?p=231#comment-9550</guid>
		<description>Inspirational material. Thanks for this, I will point a few colleagues to this page.</description>
		<content:encoded><![CDATA[<p>Inspirational material. Thanks for this, I will point a few colleagues to this page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carlos</title>
		<link>http://www.westhost.com/blog/2009/03/25/simple-and-clean-menus-with-jquery/comment-page-1/#comment-9542</link>
		<dc:creator>Carlos</dc:creator>
		<pubDate>Tue, 05 May 2009 06:40:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.westhost.com/blog/?p=231#comment-9542</guid>
		<description>Great write up Chris!

I looked at the WH forums for info on installing jQuery and could not find anything. Does WH include jQuery as part of the JRE installation? If not is there a good tutorial you may provide to show others how to install jQuery on their WH VPS?

Carlos</description>
		<content:encoded><![CDATA[<p>Great write up Chris!</p>
<p>I looked at the WH forums for info on installing jQuery and could not find anything. Does WH include jQuery as part of the JRE installation? If not is there a good tutorial you may provide to show others how to install jQuery on their WH VPS?</p>
<p>Carlos</p>
]]></content:encoded>
	</item>
</channel>
</rss>

