vote up 62 vote down star
34

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
show 5 more comments

61 Answers

1 2 3 next
vote up 26 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 10 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

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 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 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 24 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 10 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 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 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 94 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
3  
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 at 0:57
show 3 more comments
vote up 1 vote down

If you want a library with a small footprint there's no other choice but MooTools in my books. MooTools is 60Kb compressed for the core. You can add extra features if you want, but you have flexibility in choosing exactly the features you want and nothing more from here and even have the code compressed for you.

MooTools is fast and powerful, but tiny at the same time. I highly recommend it for all websites that want their UI to have some extra punch that makes people Wow.

link|flag
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 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 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 2 vote down

jQuery is awesome, small, and fun. YUI is a great library too. YUI has better widgets and documentation. jQuery is much nicer for DOM manipulation.

link|flag
vote up 2 vote down

We've moved onto using Dojo, mainly because of the licencing and CLA requirement.

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

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

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 1 vote down

I've used JQuery and loved it for basic JavaScript needs, but if you have a project that is going to require a full-fledge applicaiton UI/desktop application feel then ExtJs is the best hands down. The way I see it is JQuery is great for smaller JavaScript/AJAX needs and ExtJS is the only way to go for the bigger JavaScript needs.

link|flag
vote up 1 vote down

I didn't realize that there was work being done on a jQuery library for Rails, jRails. It's definitely starting to look like jQuery is the framework of choice for most everyone.

link|flag
vote up 0 vote down

Adobe Spry has some very nice effects, I use it for fading items in and out.

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 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 0 vote down

I think it depends on the project. If you plan on manipulating groups of elements a lot, JQuery wins hands down. If you want a solid basis to build a JavaScript library on, Prototype is an excellent choice.

link|flag
vote up 4 vote down

jQuery because of QUnit. :-)

Kind Regards

link|flag
vote up 2 vote down

JQuery. Can't live without it.

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 2 vote down

Jquery for the syntax and readability. The availability of 3rd party plug-ins makes my life easier every day.

link|flag
vote up 0 vote down

Looking back at my projects, I find myself mixing JQuery (for core functions) with YUI (for the nifty widgets).

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
1 2 3 next

Your Answer

Get an OpenID
or

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