up vote 448 down vote favorite
270
share [g+] share [fb]

There are a few JavaScript frameworks/toolsets out there, such as:

It certainly seems that jQuery is ascendant in terms of mindshare at the moment. For example, Microsoft (ASP.NET MVC) and Nokia will use it. I also found this performance comparison of Dojo, jQuery, MooTools and Prototype (Edit: Updated Comparison), which looks highly favourable to Dojo and jQuery.

Now my previous experience with JavaScript has been the old school HTML + JavaScript most of us have done and RIA frameworks like Google Web Toolkit ("GWT") and Ext-GWT, which were a fairly low-stress entry into the Ajax world for someone from a Java background, such as myself.

But, after all this, I find myself leaning towards the more PHP + Ajax type solution, which just seems that much more lightweight.

So I've been looking into jQuery and I really like its use of commands, the use of fluent interfaces and method chaining, its cross-browser CSS selector superset, the fact that it's lightweight and extensible, the brevity of the syntax, unobtrusive JavaScript and the plug-in framework. Now obviously many of these aren't unique to jQuery but on the basis that some things are greater than their sum of parts, it just seems that it all fits together and works well.

So jQuery seems to have a lot going for it and it looks to the frontrunner for what I choose to concentrate on. Is there anything else I should be aware of or any particular reasons not to choose it or to choose something else?

EDIT: I just wanted to add this trend comparison of JavaScript frameworks.

link|improve this question
1  
The comparison link you had was comparing "jquery" to literally "+dojo", "+yui", etc. The + was not necessary and was skewing the results. I fixed this. – Paolo Bergantino Mar 29 '09 at 14:01
13  
What I really hate about jQuery is that the code is a terrible maze and very difficult to read. So I'm always scared of one potential bug it might happen to my application caused by jQuery and not being able to look into jQuery code to quickly (couple of hours) patch it for at least myself and my customers. – Marco Demaio Sep 3 '10 at 15:59
1  
That only covers use on public web-sites which of course is going to massively overcount jquery usage because most usage of dojo and ext js is behind firewalls on internal company apps – Michael Mullany Aug 10 '11 at 22:43
show 12 more comments
feedback

protected by Yi Jiang Nov 28 '11 at 1:26

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

40 Answers

1 2
up vote 433 down vote accepted

jQuery

  • Fast
  • Well documented
  • Easy to use
  • Chaining
  • Unlike Prototype it doesn't extend an object if you didn't specifically ask for it (try looping an array in Prototype)
  • easy-to-use Ajax (I love the $.ajaxSetup() function)
  • Nice event handlers
  • CSS selectors
  • filtering your selection
  • did I mention chaining?
  • Small (only 30 KB)
  • Nice little built-in effects.
  • Plugins
link|improve this answer
156  
We use jQuery here on StackOverflow - and if you run into a tricky problem, its creator might help out! stackoverflow.com/users/6524/john-resig – Jarrod Dixon Feb 7 '09 at 9:00
7  
jQuery all the way. Fast. Lightweight. Easy. Powerful. It has it all. – Jeff Davis May 14 '09 at 20:45
32  
+29! Now that's fanboyism! – alamar May 17 '09 at 19:02
8  
+1 just for their documentation alone. I wish it had more UI control (there is a Calendar, Tab Control, dialog, etc), but nothing like what YUI has. But YUI doesn't do all the things that JQuery does either -- and there are plenty of plugins. – Chris Brandsma May 17 '09 at 19:11
50  
It is a masterstroke to use CSS selectors. This means that if you already know CSS, you have a good headstart. If you don't know CSS and start using jQuery, you automatically learn CSS. Not to mention that CSS selectors make code very concise. – SolutionYogi Jul 1 '09 at 21:18
show 13 more comments
feedback

Being a Dojo developer I would recommend Dojo. While my choice is not surprising, I became a Dojo developer because I found following things, which are done better than in other JavaScript frameworks:

  • OOP (and other paradigms) done right.
  • Widget infrastructure done right.
  • Modules done right with all necessary goodies:
    • Lazy loading of modules dynamically.
    • Possibility to extract only necessary modules and build a custom one-file profile.
    • Asynchronous loading of modules if desired.
    • Simple integration with CDNs for heavy-duty web applications.
  • Sheer breadth of available modules in DojoX including graphics, charting, grids, and so on.
  • Ability to use it in non-browser environments.
  • Attention to details in widgets:
    • support for i18n (including LTR and RTL languages),
    • support for l10n (including standard date, currency, number formatting),
    • provisions for people with special needs (automatic high-contrast mode, keyboard-only support, and so on) — useful for regular users too, and mandatory for most government contracts.
  • Smart people in the community (last but not least) — as much as I love hand-holding for novices, at some point every developer becomes "seasoned" and needs much more than that.

If all you want is to write one-liners and add simple progressive enhancements to existing web applications, you can do it with pretty much any framework, or even with a pure JavaScript. But as soon as your web application becomes bigger or more complex, good packaging, good support for your favorite methodologies, good building blocks, and the ability to make your own building blocks become more and more important. That's why I settled on Dojo, and never looked back.

link|improve this answer
33  
Dojo is an excellent base for building your own code. jQuery is okay for doing some "standard" things, but when you need very customized UI widgets or other magic, Dojo's functionality is much easier to extend. It also seems a lot of Dojo's codebase is much higher quality than some components in other libraries. – Jani Hartikainen Jul 1 '09 at 21:25
40  
The problem with Dojo is the documentation. It's not unified (dojotoolkit, dojocampus, sitepen), dojotookit.org is painfully slow, the forum is deprecated at the moment, and personally, I've had poor luck on the irc channel.... – sprugman Jul 31 '09 at 17:08
6  
Working with different toolkits I found that Dojo's docs are not that bad. For example, I have to dive in jQuery's source code on daily basis. Official docs are on dojocampus.org --- no need to go elsewhere. IRC is always about catching right people online. ;-) Sitepen doesn't provide Dojo docs, but it has good articles on Dojo, and you can find more if you google around. The forum was deprecated for a reason --- there is very much alive dojo-interest@mail.dojotoolkit.org mailing list. If you prefer a web interface, use Nabble or Gmane to read/write. Try it. – Eugene Lazutkin Jul 31 '09 at 23:37
7  
I recently subscribed to the mailing list, and I have to agree (despite my statement above), that it seems to be a vibrant and helpful community. – sprugman Aug 3 '09 at 21:19
3  
@Mark Rogers: Fair enough. Working with jQuery even more than I work with Dojo I have a different opinion. Care to elaborate, e.g., write to me directly and I will share your views with the core Dojo developers? If you want, I can share your opinion anonymously. Don't forget to mention what version of jq and dojo you compared. – Eugene Lazutkin Jan 15 '10 at 20:15
show 22 more comments
feedback

How about some love for Ext JS? (Or should I write, sencha?)

link|improve this answer
53  
Scared off several times by the license, which is more restrictive than any of the others. – Nosredna Nov 30 '09 at 18:10
8  
My typical client is not discouraged by the cost, typically prefers more a conservative look-and-feel (grids, trees, border layout, etc.), and hires large teams of developers new to JS. I find ExtJS is a reasonable solution in these circumstances. – Upper Stage Dec 1 '09 at 13:59
2  
I find for full-window applications ExtJS (maybe Dojo) is best. For multi-page apps/sites that need some Ajaxy integrations, then jQuery+UI or prototype/scriptaculous is better. I think that as a DOM extension and dhtml toolkit that jQuery is better in some scenarios. I like ExtJS a lot as well. I'm currently working on a large project using it under a commercial license. Worth noting that it doesn't make IE6 happy at all. – Tracker1 Jan 8 '10 at 9:25
4  
I am exploring Ext JS. Here is where I stand in my assessment so far: <<PROs>>: Productivity , Architecture , Widgets , Extensibility , Support , Community , Documentation <<CONs>>: Licensing / Pricing , Huge JS footprint , Huge CSS footprint , Looks more intranet inclined – Kabeer Mar 15 '10 at 14:37
2  
After trying out extjs on one project, and using jquery on another, I can say not to use Extjs unless and until project must be in extjs. Productivity wise on complex projects I find extjs twice as much time on attaining complex results, i know i am not an expert in extjs but have same number of years exp as with jquery. – Anurag Uniyal Mar 4 '11 at 12:19
show 9 more comments
feedback

I hate them all!

Because I like coding everything from scratch in Rambo's way of doing things!

See if you can answer to this question: John Rambo vs John Resig, which one of these two frameworks do you prefer?

link|improve this answer
3  
Good luck debugging bugs lol – SalmanPK Jul 27 '11 at 1:21
1  
At the end of the mission, John Resig will be back to base with his suit intact. John Rambo will be in tatters , breeding all over and smelling like a skunk.... – joshua yesterday
1  
@joshua: but that's exacly how hard coders' smell. No hard code, no fun! And I'm sure somewhere in the deep of your heart you too have sometime felt the John Rambo appeal. But I understand if you defied such appeal and you wore the John Resig suit again. :))))) – Marco Demaio 1 hour ago
show 2 more comments
feedback
  • YUI for a complete, professional looking, enterprise oriented widget toolkit.
  • Prototype if you are using http://script.aculo.us/ or like the Ruby way of doing things.
  • jQuery has gotten very popular and is most probably your best bet if you code in ASP.NET
  • You can't go wrong with either Dojo or MooTools
link|improve this answer
4  
I would personally switch the other way around (prototype to jQuery) – Pim Jager Dec 27 '08 at 9:31
2  
Widgets that are enterprise friendly. You know, more about tree views, calendar controls, data grids, and charts than about animating sprites. Since my original post, Yahoo has been enhancing their YUI to be more consumer friendly too. There is now a file uploader, image cropper, and an image carousel widget that are all currently in beta. – Glenn Jul 5 '09 at 22:24
4  
What's the connection between jQuery and ASP.NET? – NealWalters Oct 6 '09 at 0:58
1  
The short answer is that jQuery comes standard with ASP.NET MVC so it is interpreted by .NET developers as being approved by Microsoft. – Glenn Oct 14 '09 at 21:38
show 4 more comments
feedback

With the exception of Dojo/YUI most of these are libraries, not frameworks. Frameworks involve a little more (architecture + development tools).

JavaScriptMVC (http://javascriptmvc.com) is a great choice for organizing and developing a large scale JS application.

The architecture design very well thought out. There are 4 things you will ever do with JavaScript:

  1. Respond to an event
  2. Request Data / Manipulate Services (Ajax)
  3. Add domain specific information to the ajax response.
  4. Update the DOM

JMVC splits these into the Model, View, Controller pattern.

First, and probably the most important advantage, is the Controller. Controllers use event delegation, so instead of attaching events, you simply create rules for your page. They also use the name of the Controller to limit the scope of what the controller works on. This makes your code deterministic, meaning if you see an event happen in a '#todos' element you know there has to be a todos controller.

$.Controller('Todos',{
   'click' : function(el, ev){ ... },
   '.delete mouseover': function(el, ev){ ...}
   '.drag draginit' : function(el, ev, drag){ ...}
})

Next comes the model. JMVC provides a powerful Class and basic model that lets you quickly organize Ajax functionality (#2) and wrap the data with domain specific functionality (#3). When complete, you can use models from your controller like:

Todo.findAll({after: new Date()}, myCallbackFunction);

Finally, once your todos come back, you have to display them (#4). This is where you use JMVC's view.

'.show click' : function(el, ev){ 
   Todo.findAll({after: new Date()}, this.callback('list'));
},
list : function(todos){
   $('#todos').html( this.view(todos));
}

In 'views/todos/list.ejs'

<% for(var i =0; i < this.length; i++){ %>
   <label><%= this[i].description %></label>
<%}%>

JMVC provides a lot more than architecture. It helps you in ever part of the development cycle with:

  • Code generators
  • Integrated Browser, Selenium, and Rhino Testing
  • Documentation
  • Script compression
  • Error reporting
link|improve this answer
20  
Might be polite to mention your own interest in JavaScriptMVC... – Tim Down Dec 8 '10 at 15:26
show 2 more comments
feedback

I would say that the main question to ask is:

Are you doing small scale website additions or large single page web applications?

Any of the libraries are good for the former, but for the latter I would choose dojo every time. The reason being:

  • its excellent widget system
  • its breadth of functionality
  • its build/minification system
  • its easy extensibility and robust OO design

but most importantly

the fact you have a single source for the toolkit and widgets that are on a defined release schedule with a published roadmap and a large number of people working to make each release happen. This is invaluable for large scale development. I would hate to be in the position of using toolkit X for xhr and dom manipulation, but toolkit Y for some widgets and toolkit Z for other widgets. Trying to get compatibility and synchronized releases would be a non starter. Find out how many people support and maintain your toolkit of choice and work through the scenario of what you would do if the maintainers left to do something else..

link|improve this answer
show 2 more comments
feedback

A new kid on the block: http://ukijs.org Its strength is dealing with enormous lists. IE6+.

link|improve this answer
6  
+1 Uki's Google Wave layout in 100 lines of code is pretty impressive, I must admit. – cletus Jan 21 '10 at 8:48
show 1 more comment
feedback

One thing is nobody seems to have mentioned that you can use more then one library, the MochiKit library in particular, since in terms of name spacing I think it is very well designed. I guess the MochiKit library isn't very popular it is a shame because I think it is hands down the most well designed as a JavaScript library. http://mochikit.com/

I prefer the YUI of all the things mentioned though because not only is it a well designed JavaScript library that doesn't interfere with your code because everything is in YAHOO or wrapped in an anonymous function, but also it has a very clear focus to the library and it fits in with the philosophy of MVC.

link|improve this answer
3  
Every library is namespaced, besides Prototype extending various data types. YAHOO is so in love with talking about namespacing, I think they should marry it. – Drew Jan 7 '11 at 0:35
show 1 more comment
feedback

Since this question is a bit old, I thought I'd point out that there are new kids in town to consider:

Not as new, but previously unmentioned in this thread:

link|improve this answer
2  
What is missing on their websites is a clear statement explaining why we should use another library, aren't jQuery, YUI, DOJO, prototypejs, ... enough?! – Marco Demaio Nov 2 '10 at 16:44
show 1 more comment
feedback

I use YUI because I think it is complete in functionality.

The YUI 3.0 will be very like jQuery in its strengthness.

link|improve this answer
3  
YUI 3 is more and more becoming a totally unreadble code maze like jQuery. – Marco Demaio Nov 2 '10 at 16:40
1  
What do you mean about strength? – Tobu Sep 11 '11 at 23:20
feedback

I'm using YUI for a few of their controls (DataTable, Paginator, TabView, Autocomplete, etc.) since they work out of the box with very little coding. But for most everything else I rely on jQuery for it's simplicity.

I'm hoping in the future jQuery will have an equivalent set of controls so I can stick to a single framework.

link|improve this answer
feedback

I like jQuery simply because it's well documented! There's an excellent jQuery book: "Learning jQuery1.3" Chaffler/Swedberg.

link|improve this answer
feedback

I think you might find jQuery is rapidly catching up on the plug-ins front.

link|improve this answer
feedback

A follow-up on Eugene's answer: In addition to the massive infrastructure it provides, Dojo 1.6 is also the first (and only) popular JavaScript Library that can be successfully used with the Closure Compiler's Advanced mode, with all the size, performance and obfuscation benefits attached to it -- other than Google's own Closure Library, that is.

http://dojo-toolkit.33424.n3.nabble.com/file/n2636749/Using_the_Dojo_Toolkit_with_the_Closure_Compiler.pdf?by-user=t

In other words, a program using Dojo can be 100% obfuscated -- even the library itself.

Compiled code has exactly the same behavior as plain-text code, except that it is much smaller (average 25% over minifiers), runs much faster (especially on mobile devices), and almost impossible to reverse-engineer, even after passing through a beautifier, because the entire code base (including the library) is obfuscated.

Code that is only "minified" (e.g. YUI compressor, Uglify) can be easily reverse-engineered after passing through a beautifier.

link|improve this answer
show 2 more comments
feedback

If you are doing anything really JavaScript-heavy, like a single-page site I would say Dojo, because of its great architecture, templates, widget-system and built in widgets for pretty much everything. Otherwise, if you need a more lightweight style, I would say jQuery :)

link|improve this answer
feedback

For a lasting, high quality, bulletproof (or as close as possible) product, you need to be able to do unit and integration tests. jQuery, Dojo, MooTools, and YUI have testing capabilities; not sure about the others. jQuery's testing toolkit is like giving crayons to a painter; sure they can use it, but it doesn't quite do the job. I haven't used Dojo or MooTools testing so I can't really comment on that. YUI's testing toolkit is very nice and I have been using it for a couple of months now.

I have been using jQuery for years now and find that when your project gets to a certain size, code management and resolving bugs gets pretty hard and have been looking for a new tool. Yahoo has done an excellent job and created a solid testing toolkit. It doesn't pollute the global namespace and its results can be read by JUnit and Selenium. Also, the syntax is very friendly to any xUnit user.

As for widgets and the like, YUI does a good job, but Dojo and MooTools both have extensive plugins and widget support from large communities. Dojo integrates extremely well with the DOM, but MooTools and YUI are strong there too.

All in all, I think Dojo, MooTools and YUI are great frameworks, the way you like to code will determine what you use. I'll stay with YUI for now.

link|improve this answer
feedback

In my experience, everytime I saw that first of all Javascript provides a kind of freedom which makes possibile to do everything you want, in every way you want, and that is not the best at all.

I say this as a preface because I think that jQuery is powerful and cool, but let developers to do things in a "quick and dirty" way. My tiny poreface was about this, generally developers makes dirty dirty things in javascript, which tends to became dirty a lot, difficult to mantain and last but not least, difficult to understand!

I used ExtJs and I really love it because it helps to do things in a better way, more structurated, well designed and based on good principles, OOP too, Fine OOP.

I our project when we abandoned ExtJs to go to jQuery we loose all the good designed scripts, easy to read and to understand, and we earned just "quick and dirty" things!

So at the end I can say:

  • If you want to make things well, clean, elegant and more.. the choise is ExtJs
  • If you want, or need to do things quick as possible then use jQuery

p.s.

The fact that Microsoft adopted jQuery it's not well as it could seems about using or not jQuery ;-)

link|improve this answer
feedback

Another option is SproutCore.

Right now it seems that they might still be too young (e.g. underdeveloped widget/plugin libraries, lacking documentation) to seriously compete with the big players, but I've never used them. It looks like a MVC framework with some potential.

It seems they got a nice visual style (Apple used them), though I wonder how easy it is to skin/brand. (One of the worst things about Ext is how you can easily identify any Ext app in about half a second).

link|improve this answer
show 1 more comment
feedback

i know its late answer but bit worth for your question..

http://mootools.net/slickspeed/

the link above tested the speed performance and finalized Dojo and next jQuery .

i have always go with jQuery but just for ur info and i wonder this speed test was done by mootool website :).

Thanxs, Gobi.

link|improve this answer
feedback

I have to add something for consideration.

Prototype's API documentation rocks. http://prototypejs.org/api

jQuery's documentation sucks, frankly. I mean, just compare those! http://docs.jquery.com/Main_Page

Also, Script.aculo.us is a known value. I can't say it's technically the best, since all frameworks have something comparable, but who on earth cares about "technically the best"? You don't. I don't, either.

link|improve this answer
27  
I do not agree, I like jQuery's documentation very much. I find it very clear, especially the examples and the way it is split up in what you wan't to do with it (instead of in the different Objects as prototype's). – Pim Jager Jun 24 '09 at 18:31
2  
agree 100% see api.jquery.com – adardesign Sep 1 '09 at 15:48
1  
api.prototypejs.org is the new location of the api documentation. – Thorpe Obazee Mar 12 '10 at 4:02
show 3 more comments
feedback

Before starting new GUI for our new project arrival, I made some research.

Here are my findings (remove spaces from "http: // "; bcoz stackoverflow is preventing me to do so :)): Prototype framework favorable links:

http://en.wikipedia.org/wiki/List_of_Ajax_frameworks

http://www.javabeat.net/articles/12-comparison-of-ajax-frameworks-prototype-gwt-dwr-and-1.html

http://www.devx.com/AJAXRoundup/Article/33209

Dojo framework favorable links:

http://blog.creonfx.com/javascript/dojo-vs-jquery-vs-mootools-vs-prototype-performance-comparison

jQuery framework favorable links:

http://blog.creonfx.com/javascript/mootools-vs-jquery-vs-prototype-vs-yui-vs-dojo-comparison-revised

Test speed of different RIA frameworks:

http://mootools.net/slickspeed/#

More comparasions:

http://en.wikipedia.org/wiki/Comparison_of_JavaScript_frameworks

http://jqueryvsmootools.com/#conclusion

Out of all these findings I started using SmartClient 5. Initially we faced some issues but as SmartClient matures I find it interesting in many terms: 1. APIs doc help and examples 2. Flexible controls 3. Forum

Today I am working on SmartClient 8 and few on my GUIs are in production running successfully. Actually the great help with SmartClient is that you find every thing at one place. No need to dug many other sites that is hard to do for any other open source RIA framework.

So my choice is no doubt SmartClient.

Thanks Shailendra (shaILU)

link|improve this answer
feedback

Everybody talks about various JavaScript libraries and how cool one is vs. the other. How many developers really think about the bottomline impactfor their clients/employers????

In our analysis, we found that if you were to build a typical browser-based, serious business application using any of the frameworks/libraries mentioned above, you are likely to have an army of developers developing things in mostly inconsistent manner unless you have an army of code-reviewers/architects who understand how to achieve good modeling in JavaScript-based applications.

And even if you used best of what is available today, it is likely to be outdated in a matter of months if not weeks because landscape is changing so fast. Why is everyone getting so excited about coding JavaScript code to design some cool looking ui, but not even asking where are IDEs that once existed 15/20 years ago?? Does anyone even know/understand what I am talking about? Why are we coding same solutions again and again, instead of drag and drop IDE and the productivity that can be achieved with it?

At end of the day, what matters to the business is a quality, usable business solution that can deliver a lasting solution for years (not months or quarters!)

Finally, coming to the point, after thorough research we settled on General Interface (http://www.generalinterface.org) - originally from Tibco and now donated to the Dojo foundation. It is not the most ideal solution for creating s3xy Ui, but provides pretty good options for creating a meaningful business application.

If you haven't looked at it yet, building little more than s3xy websites, and have a capability to understand the business perspective (along with technical maturity_), then do explore this! You might be pleasantly surprised.

link|improve this answer
15  
Reads like an ad. – aehlke May 13 '10 at 0:59
2  
Look at the programmers/dev who are still using VIM and Emacs, IDE can provide some features and functionality, but they are not "The last word" in computering you know. Deep knowledge of the limits and abilities of the said language under development, well constructed testing plans and well designed pages will trump IDE any days honestly. – Pharaun Jun 21 '10 at 13:32
1  
Screw clients/employers/cross browser compatibility/production value/money/mobile/trends. I've wasted my life caring about such nonsense. I now code for myself, it's ten times more rewarding. – tomwrong Sep 14 '11 at 11:05
show 2 more comments
feedback

I will choose JQuery, it is light weight ,easy to use, chaining method

link|improve this answer
feedback

jQuery. Never let me down from the smallest projects to the largest.

link|improve this answer
feedback

To learn Dojo go to dojocampus.org. It is the best place to see it in action and learn!

link|improve this answer
feedback

JQuery + SmartClient

I believe SmartClient officially supports comingling with JQuery on the same page. (http://forums.smartclient.com/showthread.php?t=3578&highlight=jquery)

So use JQuery for basic stuff, and insert heavy-hitting application-like widgets via SmartClient.

link|improve this answer
feedback

I definitely recommend the use of both jQuery for all the reasons listed above, and YUI for the out of the box elements.

You can't go wrong using those!

Of course I am sure some other frameworks (Dojo, Prototyp,... ) are good too.

After it's all a matter of taste and of efficiency.

link|improve this answer
feedback

I use jQuery because there exists a goos integration into my standard web framework struts2 and it is easy to extend.

See http://code.google.com/p/struts2-jquery

link|improve this answer
feedback

The trends comparison has a typo. Here is updated link to trends for last 12 months.

Interesting post and question. I'm open to different libraries but tend to use jQuery because:

  • I find I'm very efficient coding in it
  • the documentation is good
  • it's fast and not very buggy across browsers
  • it is actively being developed
  • it has a good community both in terms of conversation and plugin development
link|improve this answer
feedback
1 2

Not the answer you're looking for? Browse other questions tagged or ask your own question.