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?
|
36
|
|||||||||
|
|
|
jQuery:
|
||||||||
|
|
|
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. |
||||
|
|
|
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. |
|||
|
|
|
|
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:
Pros Elaborated:
Cons:
Cons Elaborated:
Well, hope that helps a little bit. Didn't see anyone else mention DOJO, because they were probably smart enough to avoid it. :) |
||||
|
|
|
I like jQuery for the following benefits:
|
|||
|
|
|
|
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. |
|||
|
|
|
|
Consider using Ext JS JavaScript library if you want to achieve a desktop-like user experience. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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). |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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):
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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? |
|||
|
|
|
|
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.
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. |
||||
|
|
|
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 |
|||
|
|
|
|
jQuery - it is lightweight (16KB), fast, functional, and most importantly (IMO), well documented. |
|||
|
|
|
|
jQuery because of QUnit. :-) Kind Regards |
|||
|
|
|
|
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. |
|||
|
|
|
|
I have used Prototype, mooTools and jQuery. I use jQuery all the time and I can't imagine every switching back. |
|||
|
|
|
|
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 |
|||
|
|
|
|
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. |
|||
|
|
|
|
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'. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
jQuery. It's easy to learn, well documented and has a lot of nice plugins. I just can't imaging my life without jQuery. |
|||
|
|
|
|
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). |
|||
|
|
