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?
|
34
|
|
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. :) |
||||
|
|
|
Consider using Ext JS JavaScript library if you want to achieve a desktop-like user experience. |
|||
|
|
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 |
|||
|
|
|
|
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). |
|||
|
|
|
|
jQuery:
|
||||||||
|
|
|
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. |
|||
|
|
|
|
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'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 like jQuery for the following benefits:
|
|||
|
|
|
|
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. |
|||
|
|
|
|
We've moved onto using Dojo, mainly because of the licencing and CLA requirement. |
|||
|
|
jQuery - it is lightweight (16KB), fast, functional, and most importantly (IMO), well documented. |
|||
|
|
|
|
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'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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Adobe Spry has some very nice effects, I use it for fading items in and out. |
|||
|
|
|
|
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'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 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. |
|||
|
|
|
|
jQuery because of QUnit. :-) Kind Regards |
|||
|
|
|
|
JQuery. Can't live without it. |
|||
|
|
|
|
I have used Prototype, mooTools and jQuery. I use jQuery all the time and I can't imagine every switching back. |
|||
|
|
|
|
Jquery for the syntax and readability. The availability of 3rd party plug-ins makes my life easier every day. |
|||
|
|
|
|
Looking back at my projects, I find myself mixing JQuery (for core functions) with YUI (for the nifty widgets). |
|||
|
|
|
|
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 |
|||
|
|
