MooTools Vs. jQuery
1–4 of 4 posts
Re: MooTools Vs. jQuery
#2If there are two roughly equal (in a technical sense) technologies it usually makes sense to go with the one that has the big advantage in momentum.
Re: MooTools Vs. jQuery
#3jQuery specializes in making javascript/DOM interaction drop dead simple. Nothing else out there comes close to achieving this as well as jQuery. When I write with jQuery, the most basic pages are written functionally and when I need something more advanced it's easy to step into some OO. But, jQuery does nothing to help with object oriented javascript, you have to use javascripts prototype model.
MooTools specializes in being more of a javascript framework. It adds functionality to javascript (which is controversial in itself), and lends itself to a very classical object oriented development approach.
Both tools are quality, jQuery has a huge user base, whereas MooTools has a smaller and very rabid user base. If your project is a very UI/javascript focused project then MooTools may be the right answer. If it is not, and is just your typical site/application, then jQuery is probably it.
Re: MooTools Vs. jQuery
#4Also, the jQuery UI package is fantastic. It is without a doubt a great way to do progressive enhancement: it uses a css framework, sprited icons, and js for the interaction in separate layers. Mootools More feels disjointed and unfocused, while the jQuery UI project feels crisp and professional. Any functionality you like in More is available as jQuery plugins, which brings me to this point:
I find it much easier to modify the code for a jQuery plugin than I do a Mootools class. I personally find it much simpler to change a few function calls than redo the structure of a class.