vote up 71 vote down star
36

There seem to be a lot of choices now for DOM manipulation, Ajax and effects. Has anyone any experience of the different options and their pros and cons?

flag
1  
It seems to me that this kind of question isn't going to yield a very productive answer. You're going to get a popularity contest that is based mostly on the population of stackoverflow users - if there a lot of users here who use framework X, you'll get an overweighted answer... – Anutron Sep 16 '08 at 21:42
1  
Well, you got what was predicted: fanboyism instead of a technical discussion. This question is really interesting, and personally I want to see thoughtful arguments pro/cons different frameworks, but practically all answers are "I vote for...", and "I use...". :-( – Eugene Lazutkin Nov 26 '08 at 21:32
show 3 more comments

63 Answers

1 2 3
vote up 101 vote down

jQuery:

  1. A very straightforward philosophy: find stuff (in the DOM) and do things (change content, events, styling+position)
  2. Find things (in the DOM) using a query language you already know: CSS!
  3. Almost all function calls in jQuery return the jQuery "object", allowing you to chain call after call on the same object (saves code space).
  4. Hundreds of actively maintained plugins, many of which are very useful.
  5. Active, intelligible and newbie friendly listserv.
  6. Will soon be distributed with ASP.NET Ajax Framework
link|flag
5  
While these are all great reasons to use jQuery, they aren't really comparisons to other frameworks. Just saying that framework X is the best isn't that helpful, imho... – Anutron Sep 16 '08 at 21:43
2  
Correct me if I'm wrong, but Stack Overflow uses jQuery as well. So, if you like the interface here, you'll probably be OK with JQuery. – Don Werve Apr 14 '09 at 0:57
show 3 more comments
vote up 44 vote down

jQuery is great, and is my personal recommendation. It has lovely syntax, fantastic documentation, is increasingly dominant and well-supported, is lightning fast, feels very "clean", largely keeps itself to itself, and the developers definitely know what they're doing. It's fantastic at what it does which is a a way of taking some of the heavier lifting out of common JavaScript tasks in a clean manner and no more and no less, and to try and help you use JavaScript rather than work around it. It focuses primarily on DOM manipulation (the query in the name), which is what you do the most, and a few of the most common essential general purpose functions thrown in. jQuery has really become the "de facto" JavaScript library. jQuery UI is also available for animation and widgets but isn't anything particularly special.

Dojo is a bit like jQuery gone ugly and fat - it's not bad as much as it feels largely redundant, even with the added general purpose functions it adds, but it's still worth a look. It keeps itself to itself, and has its own widget engine called Dijit which seems to be quite heavyweight compared to the others, but I don't know much about it.

Prototype was very much the first popular framework and is declining in popularity. Its core idea is to add all sorts of extra functions to elements via Object.prototype which, as it turns out, probably isn't the best idea in the world after-all. One of the other main ideas is to help people write classes, which is turns out is best left to the person writing JavaScript after-all. It's pretty ugly and feels unintuitive and old. There's also script.aculo.us which is all the animation and UI stuff.

MooTools is a bit of a mish-mash that's quite similar to Prototype with a few handy animation things built-in like tweening thrown in for good luck. I'm pretty sure they were the innovators of being modular enabling you to "roll your own" framework on the site choosing what bits it contained and didn't on the site.

Sproutcore and Cappucino win this year's cool award. They are designed to make desktop-like applications and let you avoid doing any CSS. The downside is that applications tend to be very slow and they encourage a certain "style" that is somewhat un-web-like. The latter works in its own language called Objective-J which is the freak cross between JavaScript and Objective-C.

I would not recommend Ext, but not for technical reasons. All I really know about it is that it's one of those "hey, avoid CSS, easily make pretty things" frameworks. However the licensing issue means that you need to pay hundreds of dollars if your code isn't wholly GPL licensed, and the developers have long deceived people into giving it attention as though it was a true "open source" project with ambiguous licensing terms. It's just dishonest and I'd simply refuse to give it any time because of that.

The other main ones are YUI, Qooxdoo and Adobe Spry. I don't really know much about them. YUI is well-established and seems general purpose with all sorts of random features built-in while keeping itself-to-itself and having quite long-winded syntax, Qooxdoo seems largely focused on making complex user interfaces and Adobe Spry seems to be all about XML-focused Ajax and with a few widgets thrown in for good measure.

link|flag
2  
Great answer! however I think you shouldn't badmouth ext.js like that without referring to some context, the licensing issue was discussed far and wide. here it is: extjs.com/products/license-faq.php – Yonatan Karni Jul 21 at 8:55
show 1 more comment
vote up 27 vote down

I'm throwing my hat in for jQuery. The syntax alone gives it a gold star in my book, but there is a wealth of plugins to enhance the core library.

link|flag
vote up 26 vote down

After reviewing the high level descriptions of Prototype, jQuery, and DOJO, I gave DOJO a shot for using in an application that has been around for 8+ years. The web portion of the project I tried it with is HTML/JavaScript generated from PL/SQL code.

The reason I went w/ DOJO first is that it looked like the DOJO API docs, online reference Book of DOJO, tutorials, and forums would be helpful in getting up to speed with using the library. I also liked the Dijit part of Dojo, seemed like the UI elements had a lot to offer. DojoX seemed like a good thing to, active development taking place on extending/evolving the library. And, supposedly, the releases/lineage are supposed to be managed well.

Pros:

  1. Ease of AJAX implementation

  2. Effects (Dijit)

Pros Elaborated:

  1. What I've found so far is that doing AJAX calls in DOJO is simple and clean. The DOJO docs were helpful to quickly learn how to do AJAX w/ DOJO.

  2. Dijit is the UI component part of DOJO. Lots of nice effects and intuitive methods to use on these components.

Cons:

  1. Tuning

  2. Understanding/troubleshooting "tricky" problems

  3. Development works best in FF

Cons Elaborated:

  1. After working w/ the library, I'm running into performance issues. My project team doesn't have control over server settings (this is the responsibility of a separate corporate group), so implementing some of the DOJO recommended tuning tips can be problemsome.

  2. Besides tuning issues, I've also run into an issue w/ the posting of form data. Using the DOJO way of POST bugs out in my application, but using GET works fine. I posted to the DOJO forums, but didn't get any insight into whether this is likely a DOJO issue, or a possible issue w/ my application environment (mod PL/SQL..Apache Web Server...IE 6). When things get tricky, I don't know that there is enough info out there to troubleshoot and fix in a timely manner. And submitting form data shouldn't fall into the "tricky" category.

  3. DOJO development is keyed towards developing in FF. Which is great if A) You can use FF as a development tool, and B) if your users use FF. Unfortunately, our users are locked into IE 6, and FF doesn't run in our environment.

Well, hope that helps a little bit. Didn't see anyone else mention DOJO, because they were probably smart enough to avoid it. :)

link|flag
2  
I am using dojo for my current project. I find that jquery is better for a lot of things. Dojo is also annoying because their API has changed with 1.0 so a lot of examples on the web are out of date. My feeling at this point is that I will go with JQuery next time. – stimms Nov 18 '08 at 21:14
show 2 more comments
vote up 12 vote down

I like jQuery for the following benefits:

  • Document.ready function: processes javascript after the DOM has been built; this can begin before all images are fully loaded
  • Function chaining: most jQuery functions return a jQuery object, so related functions can be combined on the same line
  • Easy to create plugins: just write a function and add it to the chain
  • Seamless integration of CSS manipulation functions
  • Wealth of available documentation and tutorials
  • Growing number of available plugins
link|flag
vote up 11 vote down

We originally chose YUI for its completeness, documentation, robustness and maturity. But I was disappointed with the large number of dependent files and the bulk of the code required to do what we wanted (popup dialogs, Ajax form enhancements and so on).

I recently looked at jQuery and was absolutely thrilled with it. I like very small, compact scripts and jQuery uses chaining to provide a fluent means of doing multiple operations in a concise and easy to follow way.

It is also special because of its way of addressing target elements using XPath-like and/or CSS-like syntax.

My only niggle with it is the use of the $ alias for the jQuery object. This can conflict with Prototype and it just confuses the hell out of me because it looks like perverted PHP. So I use its real name for clearer code - jQuery() instead of $()

It's not just for designers; if you know a bit of JS, it's extraordinarily elegant and satisfying to use. It isn't nearly as well-documented as YUI but has a well-established community and loads of tutorials. I think either of them are sound choices for a new project.

link|flag
show 3 more comments
vote up 11 vote down

Consider using Ext JS JavaScript library if you want to achieve a desktop-like user experience.

link|flag
show 3 more comments
vote up 10 vote down

voting up is never as effective as just mentioning the same thing again, so....

jQuery FTW!!!

Actually, after having used Prototype, then scriptaculous, then mootools, then YUI and finally jQuery - I can honestly say that my preference is strongly for jQuery. It has the most natural extension of the DOM, and it almost makes it like "querying" the DOM for your objects and then applying styles, behaviors or whatever to those elements. And the new UI stuff they have been kicking out is top notch as well.

link|flag
vote up 9 vote down

Several people have already said jQuery now, but I wanted to throw in there that another benefit of jQuery is that it is now fully funded by an open source company. This means that Paul Bakaus spends roughly 40hrs/wk just thinking about/working on jQuery (specifically the UI portion).

Since the day this was announced the impact has been overwhelmingly positive. The library as a whole seems to be moving forward at a very nice pace.

(For the record, for the past 16 months I have used jQuery on every project I have worked on).

link|flag
vote up 8 vote down

Definitely jQuery.

I don't think it's necessarily the technically superior library in every regard, but has been gaining overwhelming popularity lately. Combine that with the fact that jQuery plugins are easy to create, and you have one of the most actively maturing frameworks available.

link|flag
vote up 8 vote down

And now for something completely different: MochiKit. The website states "MochiKit makes JavaScript suck less" and it is true. I have been using and loving MochiKit for over 2 years now and wouldn't think of writing JavaScript without it.

link|flag
vote up 7 vote down

I started off with Prototype/Scriptaculous, but recently have moved onto jQuery, and have been really liking it so far - it's where my vote is placed.

It's not that Prototype/Scriptaculous are bad, but jQuery feels more concise, more consistent, and more stable (in some extreme situations I had a few weird issues with Prototype that were cleared up with point releases - I don't recall what they were off-hand).

From a technical standpoint, the key difference is that I believe Prototype actually modifies the .prototype of Javascript objects, augmenting and/or replacing the functionality of JavaScript's built-in objects (hence the name). In jQuery, if you want to use any of jQuery's functionality you have to acquire a jQuery object by running it through the $() function. The way Prototype works is generally not a problem, but I have run into problems when using some advanced ASP.NET AJAX controls in my past life, and it does make jQuery feel a little more like a finely tuned scalpel: only what's strictly necessary.

Also, regarding Flubba's problem with the $() notation - you can call jQuery.noConflict() and jQuery will return the $() function to whatever you were running before (i.e. Prototype), so it does play nicely with other JS frameworks if you'd like.

link|flag
vote up 6 vote down

This question is really a duplicate of this question (I think). My answer on that question was as follows (and applies here as well):

You will get a million answers here. The short one is: there are several, not a single one. They are all different in some ways and similar in others, and, in general, none of them are poor choices. The main frameworks that I would recommend are (in alphabetical order so as not to show any bias):

* Dojo
* jQuery
* MooTools
* Prototype (with Scriptaculous)
* YUI
* MochiKit

Each of these have different styles, different communities, and different focuses. Which one you should choose is mostly a matter of matching these frameworks' style with your own. Spend some time with the tutorials and demos of each and pick the one that makes the most sense for you.

As a disclaimer, I'll point out that I'm a developer for MooTools, and wrote a book on how to use it. I wouldn't say that MooTools is better than any of these other frameworks; only different.

link|flag
show 1 more comment
vote up 5 vote down

jQuery, if for no other reason that it seems to be the most popular choice. This is comforting (at least for me) since it means that the chance of someone else already having had my yet-to-manifest problem is far greater.

link|flag
vote up 5 vote down

I prefer JQuery for many of the reasons that people have listed in other responses...

But, keep in mind that your own needs and programming style might make another library more suitable. If you're building a larger project, it probably is worth evaluating all libraries that look good "on paper" yourself. Using each contender, build a small proof-of-concept app that covers some of the core functionality of your project. Hopefully this is enough to give you a feel for each library. Then, as you are working, keep your code modular enough that it isn't completely impossible to switch (or add) another library if you run into too many limitations.

link|flag
vote up 5 vote down

I'll add my vote for jQuery for the simple reason that I've used most of the major libraries (jQuery, prototype, dojo, etc) and I've had the least problems with jQuery and felt the most productive in it. It just seems to be more consistent, well thought out, and featureful than the competitors.

That being said, I think it's worth exploring each of the major options just to familiarize yourself with the ins and outs and different capabilities of each library. I have worked on several projects where I have used a mix of 3 or four different libraries for different parts of the site. As others have mentioned you can use the noConflict() method to let jQuery co-exist with other libraries in the same page. I always immediately do "j = jQuery.noConflict()" at the top of all my pages as soon as I include jQuery, that way all of my code always uses "j" instead of "$" as the jQuery shortcut variable and then if I end up cutting/pasting code snippets from one project to another I don't have to go through and convert them all. Of course I do have to convert snippets from the web that people have written using the normal "$" shortcut variable, so I guess it depends on where you are most likely to be cutting/pasting from.

Of course, cutting/pasting is bad anyway, mmm kay?

link|flag
vote up 5 vote down

I have worked with Prototype, Rico, YUI, Ext and Dojo libraries. In the latest project we used Ext quite heavily and it is a very nice library. There are several things you want to keep in mind when choosing a JavaScript library.

  1. Make sure it provides name spacing. E.g. Mootools is a nice looking library but all of the objects are globally accessible which means it may clash with your own code or another library/tool that you may be using. For a small site or application this may not be an issue, but as complexity and the size of your site grows this will become a problem.

  2. Performance is another big issue. Libraries like Dojo may look appealing at first but once you look at the way they are loading the files it's terrible. Dojo can load about 50 files using remote calls which is quite ridiculous. You want to minimize a number of JavaScript includes as it improves performance since the browser doesn't have to make too many multiple requests to the server.

  3. Be careful about library modifying core objects. A lot of libraries nowadays add helpers like foreach to Array object or modify core classes in similar ways. This may lead to problems. E.g. Prototype modifies objects in such ways that it breaks for var a in somearray construct. All of a sudden you have extra fields on the object and your number of iterations in the loop is different. Depending on what you are trying to do this may or may not be an issue but it's something to watch out for.

I haven't programmed myself in jQuery but looking at the code that used the library I found the syntax very convenient. Ext has features of jQuery when it comes to events, DOM manipulation and Ajax but also has a great support for widgets.

In conclusion I would recommend looking at Ext and jQuery and see which one will suit your particular project.

link|flag
1  
I voted this up. But I must emphasize that Dojo does not require those remote calls. They are just there for the convenience of the developer who is used to working in the environment of calling "import foo" at the top of every file. Before launch any sane Dojo developer would simply pre-package. – pcorcoran Sep 18 '08 at 4:21
vote up 4 vote down

JQuery for me to, used it on past 4 web projects and can't fail it, support for it is excellent and the community plugins have normally covered every task you could think of.

Oh and MS seems to quite like it so are addiing additional support for it (and a few other libraries) in Visual Studio

link|flag
vote up 4 vote down

jQuery - it is lightweight (16KB), fast, functional, and most importantly (IMO), well documented.

link|flag
vote up 4 vote down

jQuery because of QUnit. :-)

Kind Regards

link|flag
vote up 3 vote down

I'd say that it largely depends on what you're trying to accomplish in your project. As other people have already mentioned, if you want desktop-like behavior then Ext JS is a great library.

jQuery is obviously a popular choice which means that you're likely to have a strong community of support.

YUI is okay - I don't particulary like how things are namespaced and the amount of dependencies required to build something that's relatively simple.

For most of my projects, I love Prototype (and Scriptaculous when minor effects are needed). Honestly, though, I'm biased just because I have used it more than any other framework (and I've tried YUI and MooTools for the most part with a little bit of Ext JS). It makes certain things really easy, such as Ajax, and has some nice functions that make looping easy.

link|flag
vote up 3 vote down

I have used Prototype, mooTools and jQuery. I use jQuery all the time and I can't imagine every switching back.

link|flag
vote up 3 vote down

As if you needed another vote... jQuery. An established, mature, well-documented library with an active community, hundreds of plugins, dedicated UI branch, lots of tutorials to get up-to-speed quickly. Jeff's using it here.

-- SEAN O

link|flag
vote up 3 vote down

jQuery.

It takes almost no time at all to pick up because of its clean and simple syntax and allowed me to implement AJAX functionality with numerous JSON requests and nifty UI effects (drag something to drop container) with ASP.NET MVC very quickly.

Its UI portion is very well done.

link|flag
vote up 3 vote down

I prefer a mix of ASP.NET AJAX and jQuery. jQuery does a great job of allowing you to traverse the DOM and do animations but asp.net ajax follows the prototype model, which allows you to define client side objects similar to the ones you would define server side.

And as a side note, if you are using ASP.NET with it, you'll get great integration support with the server side.

The one con with mixing frameworks is they all pass the 'this' object around, so when you are inside a jQuery method, it'll overwrite your asp.net ajax 'this'.

link|flag
show 1 more comment
vote up 3 vote down

Another vote for jQuery.

My team evaluated the options with the following goals - small footprint, extensible, well supported, significant market share (indicates long life ahead), easy to use.

jQuery won the evaluation cleanly, there was no close second. Feedback in production use on the first projects has backed up those findings.

link|flag
vote up 3 vote down

Dojo

I have used Dojo on a few projects thus far and have been pleased with the results. I will say that the documentation is lacking in some areas, but if you are willing to dig through the source occasionally you can figure just about anything out.

The Dojo Grid widget has been a life saver. In addition, the other Dojo form widgets from the dijit.form package are trivial to use. This includes a date picker, currency text box, and a validation text box which allows you to validate input using a regexp.

Finally, Dojo has several convenience APIs for formatting dates, currencies, etc. Also, The xhrGet and xhrPost methods make integrating with web services a trivial task.

I will say that if you want good performance, you should create your own Dojo build (a trivial task). A custom Dojo build will allow you to include only the libraries that you use. In addition, it will compress and intern other javascript files for better performance.

link|flag
vote up 3 vote down

Dojo. The base is 26k, and much more than just a DOM traversal. It can do gradual degradable enhancements, but as soon as your app is ready for the more advanced stuff Dojo is here for you unlike many other frameworks that leave you on your own.

link|flag
vote up 3 vote down

jQuery. It's easy to learn, well documented and has a lot of nice plugins. I just can't imaging my life without jQuery.

link|flag
vote up 3 vote down

If this is a seriously complex application, I would not use jQuery alone.

Instead, I would use a combination of Dojo and ExtJs. Dojo for package management and other client-side internals/architecture; and ExtJS for the presentation logic (widgets, animation, etc).

It has been my experience that jQuery is best suited for smaller projects, and other bells and whistles (not meant to be derogatory, but take it as you will), not full-blown RIA's (at least not on its own).

link|flag
1 2 3

Your Answer

Get an OpenID
or
never shown

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