<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>About Web Development by Activo &#187; jQuery</title>
	<atom:link href="http://www.activoinc.com/blog/tag/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.activoinc.com/blog</link>
	<description>Web Development in a Web 2.0 World</description>
	<lastBuildDate>Fri, 29 Jan 2010 17:16:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Detect if the Page is Secure in a Magento Template?</title>
		<link>http://www.activoinc.com/blog/2009/10/22/how-to-detect-if-the-page-is-secure-in-a-magento-template/</link>
		<comments>http://www.activoinc.com/blog/2009/10/22/how-to-detect-if-the-page-is-secure-in-a-magento-template/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 14:00:57 +0000</pubDate>
		<dc:creator>Ron Peled</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.activoinc.com/blog/?p=361</guid>
		<description><![CDATA[When you are designing a Magento template it is easy to overlook a simple fact: most links should not be hard-coded and you should always use the methods that are available for you like getSkinUrl() and getJsUrl(). In addition to pointing to the right root folder, these methods also point to the secure or unsecure [...]]]></description>
			<content:encoded><![CDATA[<p>When you are designing a Magento template it is easy to overlook a simple fact: most links should not be hard-coded and you should always use the methods that are available for you like <strong>getSkinUrl()</strong> and <strong>getJsUrl()</strong>. In addition to pointing to the right root folder, these methods also point to the secure or unsecure URLs, &#8216;https&#8217; and &#8216;http&#8217; respectively. However, how can you detect if a URL needs to be secured or not?</p>
<p><img class="aligncenter size-full wp-image-362" title="herring-hall-marvin-safe" src="http://www.activoinc.com/blog/wp-content/uploads/2009/10/herring-hall-marvin-safe.jpg" alt="herring-hall-marvin-safe" width="500" height="331" /></p>
<p>In a recent Magento project, I needed to do exactly that: find out if we are in secure or in a non secure page and point to the right <a href="http://code.google.com/apis/ajaxlibs/documentation/index.html#jquery">jQuery file on Google CDN&#8217;s</a>. Here is the code:</p>
<pre>&lt;?php if(Mage::app()-&gt;getStore()-&gt;isCurrentlySecure()): ?&gt;
&lt;script src="https://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"&gt;&lt;/script&gt;
&lt;?php else: ?&gt;
&lt;script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"&gt;&lt;/script&gt;
&lt;?php endif;  ?&gt;</pre>
<p>The key method here is the <em><strong>Mage::app()-&gt;getStore()-&gt;isCurrentlySecure()</strong></em>.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/772f8f00-52d3-4f3a-885f-66a3ef6fbbd5/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=772f8f00-52d3-4f3a-885f-66a3ef6fbbd5" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li>January 7, 2009 -- <a href="http://www.activoinc.com/blog/2009/01/07/2009-the-year-of-open-source-software/" title="2009, the year of Open Source Software">2009, the year of Open Source Software</a> (0)</li><li>December 7, 2008 -- <a href="http://www.activoinc.com/blog/2008/12/07/a-list-of-cms-ecommerce-and-blogging-systems-that-officially-support-jquery/" title="A list of CMS and eCommerce systems that officially support jQuery">A list of CMS and eCommerce systems that officially support jQuery</a> (2)</li><li>October 8, 2009 -- <a href="http://www.activoinc.com/blog/2009/10/08/magentos-massaction-for-custom-plugins/" title="Magento&#8217;s massAction for Custom Plugins">Magento&#8217;s massAction for Custom Plugins</a> (0)</li><li>September 29, 2009 -- <a href="http://www.activoinc.com/blog/2009/09/29/magentos-order-management-workflow-comprehensive-but-unrealistic-2/" title="Magento&#8217;s Order Management Workflow: Comprehensive but Unrealistic #2">Magento&#8217;s Order Management Workflow: Comprehensive but Unrealistic #2</a> (2)</li><li>June 18, 2009 -- <a href="http://www.activoinc.com/blog/2009/06/18/the-case-for-zencart-supporting-the-long-tail-of-ecommerce/" title="The Case for ZenCart: Supporting the Long Tail of eCommerce">The Case for ZenCart: Supporting the Long Tail of eCommerce</a> (2)</li><li>January 28, 2009 -- <a href="http://www.activoinc.com/blog/2009/01/28/open-source-ecommerce-the-good-the-bad-and-the-ugly/" title="Open Source eCommerce: the Good, the Bad, and the Ugly!">Open Source eCommerce: the Good, the Bad, and the Ugly!</a> (1)</li><li>December 4, 2008 -- <a href="http://www.activoinc.com/blog/2008/12/04/can-magento-and-typo3-be-integrated-yes-with-typogento/" title="Can Magento and Typo3 be integrated? Yes, with TypoGento">Can Magento and Typo3 be integrated? Yes, with TypoGento</a> (0)</li><li>November 3, 2008 -- <a href="http://www.activoinc.com/blog/2008/11/03/jquery-emerges-as-most-popular-javascript-library-for-web-development/" title="jQuery Emerges as Most Popular Javascript Library for Web Development">jQuery Emerges as Most Popular Javascript Library for Web Development</a> (2)</li><li>October 29, 2008 -- <a href="http://www.activoinc.com/blog/2008/10/29/is-magento-commerce-the-new-joomla/" title="Is Magento Commerce the new Joomla?">Is Magento Commerce the new Joomla?</a> (1)</li><li>September 22, 2008 -- <a href="http://www.activoinc.com/blog/2008/09/22/zencart-and-magento-for-ecommerce/" title="ZenCart and Magento for eCommerce">ZenCart and Magento for eCommerce</a> (2)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.activoinc.com/blog/2009/10/22/how-to-detect-if-the-page-is-secure-in-a-magento-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2009, the year of Open Source Software</title>
		<link>http://www.activoinc.com/blog/2009/01/07/2009-the-year-of-open-source-software/</link>
		<comments>http://www.activoinc.com/blog/2009/01/07/2009-the-year-of-open-source-software/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 05:15:23 +0000</pubDate>
		<dc:creator>Ron Peled</dc:creator>
				<category><![CDATA[Content Management Systems]]></category>
		<category><![CDATA[Ektron]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[eCommerce]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[Umbraco]]></category>
		<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://www.activoinc.com/blog/?p=176</guid>
		<description><![CDATA[We are lucky to live in our times. No, it is not fun going through (steep) downturn economy. But it is exciting to see the changes that such a recession will bring. One of the exciting changes that I predict for 2009 is a general boost to open source projects: increased usage and adoption by [...]]]></description>
			<content:encoded><![CDATA[<p>We are lucky to live in our times. No, it is not fun going through (steep) downturn economy. But it is exciting to see the changes that such a recession will bring. One of the exciting changes that I predict for 2009 is a general boost to open source projects: increased usage and adoption by corporations while communities and ecosystems grow. Perhaps even to a point of competition with commercial products (in some cases). This is another question by itself: Can an open source project compete with a commercial product?</p>
<p>This year, 2009, we will see how open source projects will make huge strides and erase the gap with commercial projects, if not gain an advantage over them. Here is why:</p>
<p>1. <strong>Unbeatable Price: free!</strong> I know, it is not entirely true, you still need services around open source products and arguably more than in commercial products. But as the market learns to adopt more and more open source products the TCO can be lower with open source than commercial products, especially if you have the right team on your side.</p>
<p>2. <strong>Gain from the &#8216;wisdom of the crowd&#8217;, instead of wisdom of one as is often the case with commercial products</strong>. We see examples of this all over, in particular in the web development industry: <a href="http://www.umbraco.org/">Umbraco</a> is gaining huge marketing share compared with <a href="http://www.ektron.com/">Ektron</a>. <a href="http://www.magentocommerce.com/">Magento Commerce</a> is <a href="http://www.activoinc.com/blog/2008/10/29/is-magento-commerce-the-new-joomla/">gaining huge market share over any other open source ecommerce platform</a> and some of the low and mid-level commercial products in the ecommerce industry. Similar thing is happening with ASP.NET: the framework is now adopting the MVC design pattern mostly due to the fact that other platforms like Zend Framework and Ruby are free and product amazing websites. Top it off by the adoption of jQuery in almost any commercial web product today including ASP.NET framework which dumped AJAX.NET in favour of jQuery.</p>
<p>3. This is the sad-but-true part: <strong>developers are being laid off and hence join open source projects</strong>. It is known that the IT industry lags about 6 months after the indicators have come in, in other words, hi-tech layoffs will continue to come. In any case, more developers will be out of a job and will have plenty of time to collaborate and volunteer in open source projects &#8211; a great way to polish a resume&#8230;</p>
<p>To summarize, in 2009 we will see a great boost in open source adoption. Now, I am not saying that commercial products will not see any upside this year, but the competition will certainly be tougher then ever before. I am excited to see how it plays out. We certainly are going to focus our energies and our client&#8217;s energies on the leaders of each industry. You?</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li>December 7, 2008 -- <a href="http://www.activoinc.com/blog/2008/12/07/a-list-of-cms-ecommerce-and-blogging-systems-that-officially-support-jquery/" title="A list of CMS and eCommerce systems that officially support jQuery">A list of CMS and eCommerce systems that officially support jQuery</a> (2)</li><li>October 29, 2008 -- <a href="http://www.activoinc.com/blog/2008/10/29/is-magento-commerce-the-new-joomla/" title="Is Magento Commerce the new Joomla?">Is Magento Commerce the new Joomla?</a> (1)</li><li>October 22, 2009 -- <a href="http://www.activoinc.com/blog/2009/10/22/how-to-detect-if-the-page-is-secure-in-a-magento-template/" title="How to Detect if the Page is Secure in a Magento Template?">How to Detect if the Page is Secure in a Magento Template?</a> (0)</li><li>January 28, 2009 -- <a href="http://www.activoinc.com/blog/2009/01/28/open-source-ecommerce-the-good-the-bad-and-the-ugly/" title="Open Source eCommerce: the Good, the Bad, and the Ugly!">Open Source eCommerce: the Good, the Bad, and the Ugly!</a> (1)</li><li>November 3, 2008 -- <a href="http://www.activoinc.com/blog/2008/11/03/jquery-emerges-as-most-popular-javascript-library-for-web-development/" title="jQuery Emerges as Most Popular Javascript Library for Web Development">jQuery Emerges as Most Popular Javascript Library for Web Development</a> (2)</li><li>October 6, 2008 -- <a href="http://www.activoinc.com/blog/2008/10/06/ektron-cms400-70-issues-with-net-framework-35-sp1/" title="Ektron CMS400 7.0 issues with .NET Framework 3.5 SP1">Ektron CMS400 7.0 issues with .NET Framework 3.5 SP1</a> (2)</li><li>September 22, 2008 -- <a href="http://www.activoinc.com/blog/2008/09/22/zencart-and-magento-for-ecommerce/" title="ZenCart and Magento for eCommerce">ZenCart and Magento for eCommerce</a> (2)</li><li>September 5, 2008 -- <a href="http://www.activoinc.com/blog/2008/09/05/joomla-vs-ektron/" title="Joomla vs Ektron">Joomla vs Ektron</a> (2)</li><li>July 30, 2008 -- <a href="http://www.activoinc.com/blog/2008/07/30/ektron-clarification-on-user-controls-vs-api/" title="Ektron: Clarification on User Controls vs API">Ektron: Clarification on User Controls vs API</a> (0)</li><li>June 18, 2009 -- <a href="http://www.activoinc.com/blog/2009/06/18/the-case-for-zencart-supporting-the-long-tail-of-ecommerce/" title="The Case for ZenCart: Supporting the Long Tail of eCommerce">The Case for ZenCart: Supporting the Long Tail of eCommerce</a> (2)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.activoinc.com/blog/2009/01/07/2009-the-year-of-open-source-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A list of CMS and eCommerce systems that officially support jQuery</title>
		<link>http://www.activoinc.com/blog/2008/12/07/a-list-of-cms-ecommerce-and-blogging-systems-that-officially-support-jquery/</link>
		<comments>http://www.activoinc.com/blog/2008/12/07/a-list-of-cms-ecommerce-and-blogging-systems-that-officially-support-jquery/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 22:49:48 +0000</pubDate>
		<dc:creator>Ron Peled</dc:creator>
				<category><![CDATA[Content Management Systems]]></category>
		<category><![CDATA[Ektron]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[ZenCart]]></category>
		<category><![CDATA[eCommerce]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Dojo]]></category>
		<category><![CDATA[DotNetNuke]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[Typo3]]></category>
		<category><![CDATA[Umbraco]]></category>
		<category><![CDATA[Visual Studio 2008]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Zen Cart]]></category>
		<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://www.activoinc.com/blog/?p=155</guid>
		<description><![CDATA[Last updated: December 7th, 2008.
Recently, jQuery &#8211; the agile JavaScript Library &#8211; has reached a tipping point. Here is a list of CMS and eCommerce systems that our clients are most interested in and their status with regard to jQuery.
Systems where jQuery is officially supported:
1. Microsoft has adopted jQuery and will offer intellisense support in [...]]]></description>
			<content:encoded><![CDATA[<p>Last updated: December 7th, 2008.</p>
<p>Recently, jQuery &#8211; the agile JavaScript Library &#8211; has reached a tipping point. Here is a list of CMS and eCommerce systems that our clients are most interested in and their status with regard to jQuery.</p>
<h2>Systems where jQuery is officially supported:</h2>
<p>1. <a href="http://blog.jquery.com/2008/09/28/jquery-microsoft-nokia/">Microsoft has adopted jQuery</a> and will <a href="http://weblogs.asp.net/scottgu/archive/2008/11/21/jquery-intellisense-in-vs-2008.aspx">offer intellisense support in its dominant IDE: Visual Studio 2008</a>.</p>
<p>2. <strong>Umbraco </strong>- an open source CMS now offers jQuery by default and <a href="http://www.umbraco.org/blog/2008/12/3/new-nitros-in-the-package-repository---help-us">using jQueryin Umbraco is a matter of adding a simple call in order to include the jQuery files in the page</a>.</p>
<p>3. <strong>Drupal </strong>- is an open source CMS and Framework CMS, as of version 5 it offers jQuery streight from its core. There are <a href="http://drupal.org/node/315100">plans to build a centralized jQuery plugin in Drupal version 7</a>.</p>
<p>4. <strong>Typo3 </strong>- is an open source CMS Framework. <a href="http://typo3.org/documentation/document-library/extension-manuals/jquery/1.2.2/view/toc/0/">Typo3 has a jQuery extension</a> that allows advanced integration with jQuery.</p>
<p>5. <strong>DotNetNuke </strong>- an open source ASP.NET CMS. Since October 2008 <a href="http://www.dotnetnuke.com/Community/Blogs/tabid/825/EntryId/2009/DotNetNuke-5-0-Now-with-jQuery.aspx">DotNetNuke offers built in jQuery support beginning with version 5</a>.</p>
<h2>Systems where jQuery is <strong>not</strong> supported:</h2>
<p>1. <strong>Joomla </strong>- seems to favor Mootools over jQuery. Here is an <a href="http://forum.joomla.org/viewtopic.php?f=231&amp;t=283215">article on how to support jQuery within Joomla and avoid conflicts with other libraries</a>.</p>
<p>2. <strong>Zend Framework</strong> &#8211; the leading PHP Framework following the MVC design pattern. A press release was issued in May 2008 announcing <a href="http://devzone.zend.com/article/3545-Dojo-and-Zend-Framework-Partnership-Announcement">Zend Framework and Dojo partnership</a>.</p>
<p>3. <strong>Magento Commerce</strong> &#8211; an open source eCommerce platform that is gaining huge market share in the eCommerce industry. Currently Magento Commerce supports prototype JS library instead of jQuery, but <a href="http://www.magentocommerce.com/wiki/how-to/how_to_use_jquery_1.2.6_lastest_with_prototype">offers ways to integrate jQuery easily</a>.</p>
<p>4. <strong>Zen-Cart </strong>- an open source eCommerce (competing with Magento). At the moment Zen-Cart is not supporting any JavaScript library in its core.</p>
<h2>Other systems and their relationship to jQuery:</h2>
<p>1. <strong>WordPress </strong>- an open source blogging software. Uses jQuery for its core functionality and is avilable for any third party plugin.</p>
<p>2. <strong>Ektron CMS400</strong> &#8211; Ektron has an enterprise level CMS with advanced content editing features. Oddly enough, <a href="http://dev.ektron.com/forum.aspx?boardid=80&amp;g=posts&amp;page=-1&amp;t=17838">Ektron seems to have embedded their own version of jQuery in their code</a>.</p>
<p>While jQuery seems to be favored the favored JavaScript library by many developers, it has yet to be declared as the default one for many projects and systems. I&#8217;ll be keeping this list updated in the following months. Let me know if there is a system that interests you and I did not list it here.</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li>January 7, 2009 -- <a href="http://www.activoinc.com/blog/2009/01/07/2009-the-year-of-open-source-software/" title="2009, the year of Open Source Software">2009, the year of Open Source Software</a> (0)</li><li>October 29, 2008 -- <a href="http://www.activoinc.com/blog/2008/10/29/is-magento-commerce-the-new-joomla/" title="Is Magento Commerce the new Joomla?">Is Magento Commerce the new Joomla?</a> (1)</li><li>January 28, 2009 -- <a href="http://www.activoinc.com/blog/2009/01/28/open-source-ecommerce-the-good-the-bad-and-the-ugly/" title="Open Source eCommerce: the Good, the Bad, and the Ugly!">Open Source eCommerce: the Good, the Bad, and the Ugly!</a> (1)</li><li>December 4, 2008 -- <a href="http://www.activoinc.com/blog/2008/12/04/can-magento-and-typo3-be-integrated-yes-with-typogento/" title="Can Magento and Typo3 be integrated? Yes, with TypoGento">Can Magento and Typo3 be integrated? Yes, with TypoGento</a> (0)</li><li>November 3, 2008 -- <a href="http://www.activoinc.com/blog/2008/11/03/jquery-emerges-as-most-popular-javascript-library-for-web-development/" title="jQuery Emerges as Most Popular Javascript Library for Web Development">jQuery Emerges as Most Popular Javascript Library for Web Development</a> (2)</li><li>September 22, 2008 -- <a href="http://www.activoinc.com/blog/2008/09/22/zencart-and-magento-for-ecommerce/" title="ZenCart and Magento for eCommerce">ZenCart and Magento for eCommerce</a> (2)</li><li>September 5, 2008 -- <a href="http://www.activoinc.com/blog/2008/09/05/joomla-vs-ektron/" title="Joomla vs Ektron">Joomla vs Ektron</a> (2)</li><li>October 22, 2009 -- <a href="http://www.activoinc.com/blog/2009/10/22/how-to-detect-if-the-page-is-secure-in-a-magento-template/" title="How to Detect if the Page is Secure in a Magento Template?">How to Detect if the Page is Secure in a Magento Template?</a> (0)</li><li>June 18, 2009 -- <a href="http://www.activoinc.com/blog/2009/06/18/the-case-for-zencart-supporting-the-long-tail-of-ecommerce/" title="The Case for ZenCart: Supporting the Long Tail of eCommerce">The Case for ZenCart: Supporting the Long Tail of eCommerce</a> (2)</li><li>December 3, 2008 -- <a href="http://www.activoinc.com/blog/2008/12/03/securing-joomla-cms-based-sites/" title="Securing Joomla! CMS based sites">Securing Joomla! CMS based sites</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.activoinc.com/blog/2008/12/07/a-list-of-cms-ecommerce-and-blogging-systems-that-officially-support-jquery/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>jQuery Emerges as Most Popular Javascript Library for Web Development</title>
		<link>http://www.activoinc.com/blog/2008/11/03/jquery-emerges-as-most-popular-javascript-library-for-web-development/</link>
		<comments>http://www.activoinc.com/blog/2008/11/03/jquery-emerges-as-most-popular-javascript-library-for-web-development/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 11:01:50 +0000</pubDate>
		<dc:creator>Ron Peled</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web-based User Interfaces]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[JavaScript Framework]]></category>
		<category><![CDATA[JavaScript Library]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Visual Studio 2008]]></category>

		<guid isPermaLink="false">http://www.activoinc.com/blog/?p=111</guid>
		<description><![CDATA[It seems to be official: jQuery is gaining ground faster than any other JavaScript Library. There may be many reasons but I like to think that jQuery is leading the pack due to its simplicity and relatively small size. Here is what Google Trends is showing us:

Top Reasons for jQuery&#8217;s ground gaining:

Simplicity.
Small in size: only [...]]]></description>
			<content:encoded><![CDATA[<p>It seems to be official: jQuery is gaining ground faster than any other JavaScript Library. There may be many reasons but I like to think that jQuery is leading the pack due to its simplicity and relatively small size. Here is what Google Trends is showing us:</p>
<p><img class="alignnone size-full wp-image-132" title="jquery-dojo-mootools-prototype-google-trends" src="http://www.activoinc.com/blog/wp-content/uploads/2008/11/jquery-dojo-mootools-prototype-google-trends.gif" alt="" width="465" height="290" /></p>
<h2>Top Reasons for jQuery&#8217;s ground gaining:</h2>
<ul>
<li>Simplicity.</li>
<li>Small in size: only 15K for latest production release after its minified and gzipped.</li>
<li>Extendable: pretty big plugin library. Currently showing hundreds of plugins.</li>
<li>CSS3 Compliant and one of the first JS Library to use CSS selectors.</li>
<li>Handles AJAX very well while avoiding code bloating.</li>
<li>Major adoption by ASP.NET developers and <a href="http://weblogs.asp.net/scottgu/archive/2008/09/28/jquery-and-microsoft.aspx">teaming up with ASP.NET&#8217;s team for improved integration</a></li>
</ul>
<h2>jQuery Resources:</h2>
<ul>
<li><a href="http://jquery.com/">jQuery Official Site</a></li>
<li><a href="http://plugins.jquery.com/">jQuery Plugins</a></li>
<li><a href="http://www.hanselman.com/blog/HanselminutesPodcast126ChatWithJohnResigCreatorOfJQuery.aspx">Chat with John Resig, Creator of jQuery</a></li>
<li><a href="http://blogs.ipona.com/james/archive/2008/02/15/JQuery-IntelliSense-in-Visual-Studio-2008.aspx">jQuery Intellisense in Visual Studio 2008</a></li>
<li><a href="http://www.gscottolson.com/weblog/2008/01/11/jquery-cheat-sheet/">jQuery 1.2 Cheat Sheet</a></li>
</ul>
<h2>Other Javascript Libraries:</h2>
<p>All these Javascript frameworks provide the basic idea of single developer resource for cross browser and cross platform JavaScript development. Additionally, all make AJAX a little bit easier:</p>
<ul>
<li><a href="http://dojotoolkit.org/">Dojo</a></li>
<li><a href="http://www.prototypejs.org/">Prototype</a></li>
<li><a href="http://mootools.net/">Mootools</a></li>
<li><a href="http://mochikit.com/">Mochikit</a></li>
<li><a href="http://www.extjs.com/">Ext JS</a></li>
<li><a href="http://labs.adobe.com/technologies/spry/">Adobe Spry</a></li>
<li><a href="http://developer.yahoo.com/yui/">YUI (Yahoo! User Interface)</a></li>
</ul>
<p>If you know of any additional interesting jQuery Resources, drop me a line. Thanks!</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li>December 7, 2008 -- <a href="http://www.activoinc.com/blog/2008/12/07/a-list-of-cms-ecommerce-and-blogging-systems-that-officially-support-jquery/" title="A list of CMS and eCommerce systems that officially support jQuery">A list of CMS and eCommerce systems that officially support jQuery</a> (2)</li><li>January 7, 2009 -- <a href="http://www.activoinc.com/blog/2009/01/07/2009-the-year-of-open-source-software/" title="2009, the year of Open Source Software">2009, the year of Open Source Software</a> (0)</li><li>October 22, 2009 -- <a href="http://www.activoinc.com/blog/2009/10/22/how-to-detect-if-the-page-is-secure-in-a-magento-template/" title="How to Detect if the Page is Secure in a Magento Template?">How to Detect if the Page is Secure in a Magento Template?</a> (0)</li><li>October 6, 2008 -- <a href="http://www.activoinc.com/blog/2008/10/06/ektron-cms400-70-issues-with-net-framework-35-sp1/" title="Ektron CMS400 7.0 issues with .NET Framework 3.5 SP1">Ektron CMS400 7.0 issues with .NET Framework 3.5 SP1</a> (2)</li><li>September 5, 2008 -- <a href="http://www.activoinc.com/blog/2008/09/05/joomla-vs-ektron/" title="Joomla vs Ektron">Joomla vs Ektron</a> (2)</li><li>August 19, 2008 -- <a href="http://www.activoinc.com/blog/2008/08/19/hack-attempt-sql-injection-tagreting-ms-sql-servers/" title="Hack attempt: SQL Injection Tagreting MS SQL Servers">Hack attempt: SQL Injection Tagreting MS SQL Servers</a> (0)</li><li>July 30, 2008 -- <a href="http://www.activoinc.com/blog/2008/07/30/ektron-clarification-on-user-controls-vs-api/" title="Ektron: Clarification on User Controls vs API">Ektron: Clarification on User Controls vs API</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.activoinc.com/blog/2008/11/03/jquery-emerges-as-most-popular-javascript-library-for-web-development/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
