vote up 62 vote down star
33

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

vote up 0 vote down

YUI anytime

link|flag
vote up 0 vote down

Adobe Spry from Adobe Labs, its still in prerelease (1.6.1) but it fully functional, easy to use, easy to begin, easy to understand, simply it return response from server as XML so you can manipulate it using many spry function.

also it provide nicely done effects that similar with scripta-cool-us :D, it has several widgets to try from accordion into tab panel.

really simple for beginner especially if you have Dreamweaver CS3 (or CS4 Beta).

link|flag
vote up 4 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
show 1 more comment
vote up 39 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
1  
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 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 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 1 vote down

Depends on what you wanna do. jQuery is really nice but DOJO comes with a bunch of beautiful and easy to use Widgets (for example for calendars).

DOJO can also understand Django's template language (I work in Django a lot) which makes displaying data dynamically on the website a pleasure. Their way to attach widgets also works really well with Django's forms module.

But DOJO is a little heavy. So if you want a lean system go for jQuery.

link|flag
vote up 2 vote down

jQuery is in general the best javascript library out there - it's nearly a new language, and I mean that in a good way - the syntax is crazy cool, and makes so many shortcuts available to you that you end up spending about half the time writing something up through jQuery that you would've in straight javascript.

link|flag
vote up 1 vote down

I tend to lean on jQuery for the selector stuff and YUI for the widgets and its events library. The YUI 3.0 evolution of CustomEvents looks even nicer...

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

vote for Jquery, easy, straight forward, lots of plugins, and well documented

link|flag
vote up 1 vote down

As every other question in life, the answer is: it depends.

If you want to hack together some minor JS, I would probably recommend jQuery.

If you want to build a serious gmail-esque RIA, Dojo might be worth a serious look.

link|flag
vote up -1 vote down

I recomend you stay away from DOJO. It is bloated and full of bugs. Most of the widgets take ages to download from your site, they open a bazillion connections to your server. ExtJS is a good alternative to DOJO, JQuery has alot of plugins that acomplish similar things, but you need to know what you want and hunt them down. For lighter stuff JQuery and MochiKit are the best. My personal choice is MochiKit.

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

jQuery - easy to use with a great community and documentation.

link|flag
vote up 1 vote down

My vote is for JQuery...

link|flag
vote up 0 vote down

I think each of them has strength and weaknesses, take the best part from each for a specific task is the smart way.

for eaxample, though i love Jquery and i use it a lot, but to perform frequently ajax request based on timer i use prototype as it has built in, and tested on the battle ajax perodical adapter rather than creating extends function in jquery

link|flag
vote up -1 vote down

I would advise against Dojo because the resize effects, at least in demos, are highly buggy, and their extensions/widgets are slow to load. While the DOM selection is blazing fast, there's also a first-shot delay in effects and actions, after which everything runs smoothly.

I personally recommend mooTools for its programming style, it's smoothness, and its reliability. I see many whine about the community and the lack of back version support, but by and large the arguments are just silly. The community has seen its share of trolls, and now has gone to community sites. The support for previous versions is irritating at times, but it isolated to certain functions and internal workings more than the whole package. And size is no issue when the javascript is cached anyway.

link|flag
show 4 more comments
vote up 2 vote down

İ prefer YUI in my commercial and personal works. Because it isn't only a library it is also a development-school with a great documentation, api-doc, too many examples, brilliant articles and patterns.

It almost has all feautures which other libraries have. They are mostly implemented chain feauture into YUI3 (like in JQuery)

Btw i'm a big fan of Douglas Crockford :)

My personal choices (with order) : YUI, JQuery

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

jQuery and Mootools. jQuery has a lot of support and is being used by a lot of people which should ensure that its development lasts. I usually use this for clients that I really don't want to spend too much time :p

Mootools has a cute name. Kidding. I like it because it is OO and have used in a number of personal projects of mine :p

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

I would suggest base2. Some reasons:

  • It's standards based, thus future proof.
  • It has great documentation

It's maybe not the most popular library, but the code is rock solid.

link|flag
vote up 0 vote down

Fork Javascript -- I've looked at those other libraries and they all seem to try to do "everything" with crazy $(x) syntaxes and things. Fork is lean & mean and you can just use bits & pieces.

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

I had a very brief look into this recently and found that jquery and prototype were pretty similar to all intense purposes. I didn't spend a great deal of time looking behind the scenes but in terms of their syntax and semantics and what they could be used for they were fairly similar. I personally, didn't like their semantics. One of the most experienced programmers I know reccomended mochikit and I see it hasn't been mentioned by anyone here - I hadn't heard of it either. As a programmer with a background in app languages as opposed to scripting languages I found it refreshing and pretty powerful.

Does anyone know of an opensource drag and drop ide (ala flash) that can be used with js libraries? Does anyone fancy having a go at making one if there isn't one already?

link|flag
vote up 0 vote down

Mootools.

It is said by many that:

Mootools is the best overall, JQuery is the best for beginners, Dojo gives the most power, and Ext gives the best UI.

In my experience, Mootools has as much power as I have ever needed, makes for much much better code, and is easier and more consistent once you get to understand their conventions.

But they don't have nearly as good a hype machine as JQ. Most move from JQ to Moo - sort of like moving from a Honda to a Harley. Its no harder to ride, but you've gone up a step.

As Mootools more matures I'd expect some hype to come with it, which is the only thing Moo lacks.

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

Easily I would say EXTJS. Although JQuery has a lot of useful features like method chaining, EXTJS has an awesome standardized UI Library. They also have easy to use closure support by implementing a createDelegate function. Overall, EXT gives you the ability to customize your package, so as you don't have to load every class, and at the same time easily gives you as much power as JQuery but with at least a little more standardization of DOM structure and class names.

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

Jquery 1) usability 2) functionality 3) community 4) documentation

link|flag

Your Answer

Get an OpenID
or

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