Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It seems that jQuery has taken the throne for JavaScript frameworks and I was wondering exactly why. Is there a technical reason for this or is it just that they have evangelists? I have been really happy with using Prototype myself. Should I use jQuery for my next project?

share|improve this question
straight off delicious: 74.125.45.132/search?q=cache:http://jqueryvsmootools.com Don't know why it went offline. – johnny May 19 '09 at 15:45
9  
This question assumes everyone likes jQuery... this is a flawed assumption – singpolyma May 27 '09 at 1:35
2  
Just use jQuery if you're feeling uncertain. If you messed up, then go back to Prototype again. At least you will learn something along the way. – jpartogi Jul 23 '09 at 11:24
Hey @CasperOne - Dear - you close this question as not "Constructive" by "ABUSE" of your authority! look at that how much discussion was going on, people shared many useful interactions... so next time Please be nice to close a question... – HydPhani Jun 13 at 12:30

closed as not constructive by casperOne Oct 19 '12 at 11:56

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

28 Answers

up vote 253 down vote accepted

Having used Prototype, Scriptaculous and jQuery. I find jQuery to be far more powerful, in that I tend to write far fewer lines of code than with Prototype.

I think what makes it particularly useful/powerful is:

  1. The chaining of queries (each jQuery returns itself so you can chain them together)
  2. Working with arrays/collections of results as a single unit eg: $('.tab').hide() could hide all elements of class tab
  3. I find the API extremely 'discoverable' and commonsensical, in that, having a little knowledge I can achieve the results I am after eg: $(':input').parents(':not(:first)').show() would show all the parents of every input element except the first parent.
  4. and probably most of all is the extensibility and plugin architecture of jQuery is incredible and has created an awesome community of plugins, where I can find practically anything I should ever need.

Do yourself a favour and definitely use jQuery... and donate some money while you're at it :)

share|improve this answer
36  
@mcivilian: I can't disagree more! What is so difficult to read about: $('#some_element').addClass('highlighted').show(); ? – rfunduk Jan 21 '09 at 18:23
7  
@mcivilian: Chaining is imho very nice feature, if used wisely. – Jakub Arnold Mar 27 '09 at 22:49
3  
I dont know that it is a cardinal sin of readability, but it is less readable. My biggest problem with chaining deals with the fact that there is not existence checking. If $('#some_element') doesn't already exist, then addClass will throw an error. And for those of us with browsers that alert on every js error that is uber-annoying. – Goblyn27 May 28 '09 at 18:29
19  
@Goblyn27: I'm not sure what you mean, if $("#some_element") isn't found you won't get any error, the selector simply found no match and doesn't continue the chain...which for every instance I've ever come across is exactly what you would want to happen. This allows generic code in a main JS file for your site that loads on all various pages, if the selector doesn't apply to that page it quietly does nothing...this has the added benefit of less IFs and fewer http requests as well. – Nick Craver Jun 26 '09 at 13:29
10  
@nick/goblyn27 - Actually $("#some_element") returns an empty jQuery object, calling .addClass() internally does a for loop over each DOM element, meaning it basically returns this immediately, not breaking the chain, but not throwing an error. – gnarf Sep 8 '09 at 23:38
show 6 more comments

John Resig himself created really nice presentation comparing the different JS libraries out there: http://www.slideshare.net/jeresig/javascript-library-overview-presentation/

It gives a really nice overview of what it does and what it does not.

As for me, I really like the chaining that results in very succinct, but readable code.

Here are some more presentations about jQuery from him: http://ejohn.org/blog/jqueryembraceextend/

share|improve this answer
7  
Maybe it's clumsy but here "himself" does convey a connection between John Resig and JQuery, if you didn't know. – Danyal Aytekin Feb 2 '11 at 16:53

One major point has been left out:

All of the out-of-the-box functionality in jQuery are in reality extensions. This includes all the shorthands, like click(), hover(), toggle(), etc., but also the core-methods like bind(), each(), animate(), and so on.

This means that you can detach functionality you are not using, making the library even smaller--file-size wise, as well as memory-footprint wise.

This is pure design-genius!

share|improve this answer
I don't understand your answer. Can you provide more detail? – Luke101 Nov 17 '09 at 0:31
5  
click, hover, toggle, etc. are shorthands for the bind function. In essence; click() calls the bind function (which is the function used to attach all events). Think of the shorthands as overloads to the bind function. So click is a shorthand for calling the bind function: bind("click", function () { }); – roosteronacid Feb 19 '10 at 15:15

People keep saying that jQuery's chainability makes for less readable code, but they seem to forget that readability is also a function of layout, not just of syntax. Compare e.g.:

$('#elem').click(function () { /* ... */ }).css({ color: 'red', opacity: 0.5 }).show();

vs.

$('#elem')
  .click(function () {
    /* ... */
  })
  .css({
    color: 'red',
    opacity: 0.5
  })
  .show();

I find jQuery lets me write better, more readable code, provided it's properly formatted. Which really applies to any source code.

share|improve this answer

I know this is an old one but I couldn't stop myself from answering anyway. Just for the record.

jQuery is modular, its core library works faster than any other, it's quite capable and has a small footprint. Which makes it perfect for adding small bells and whistles to your forms like validation and AJAX updaters. It's also quite powerful and stands on the shoulders of giants like CSS3 selectors (which every web developer knows well). John Resig also makes sure jQuery always has all the features on the market and performs them the fastest.

Nevertheless, Prototype was the first library to decouple the language from browser APIs such as the DOM API and XMLHTTPRequest API, which were clearly designed to be language agnostic. Sam Stephenson laid a really well thought out framework for front-end development that focused on the good parts of JavaScript (the ones Douglas Crockford has been talking about even before the first browser wars). And when you compare Script.aculo.us with jQuery UI, the animations are much realistic, smooth and and the framework is clearly advanced. And jQuery was obviously heavily inspired by the ideas first utilized in Prototype (the use of $ to begin with).

Even though it was really a pioneer, Prototype was coming along with the Rails framework, so some of the basic building blocks like Array.each was designed to mimic the Ruby way of programming. It was extending the Array object which caused previously written for-in loops to fail. And to tell the truth, especially when combined with Script.aculo.us, you couldn't really call it lightweight at all. You could feel your website staggering as soon as you include the libraries. It came a long way since then but not before jQuery won the hearts of the majority.

I believe most of the popularity of jQuery came from the fact that you could easily download plugins for almost anything and install them into your code with ease. This enabled those who don't want to write JavaScript to have quite elegant front-end features on their websites, such as slideshows and validation.

To tell the truth, even though I like Prototype more than jQuery, it seems more practical to use jQuery for everything where Prototype seems like an overkill.

share|improve this answer
1  
i never got close to "script.aculilu.uoiouos". just to complex to write, jquery was so easy to remember! – codelio May 2 at 6:21

Have a look at this (very similar) question:

Should I convert from MooTools to jQuery?

My personal take on it is that I'm happy to see some form of consensus with regard to JavaScript libraries. There's so much code out there locked to a specific library or framework that you simply cannot use if you happen to have selected a different one.

It's probably not worth revisiting all your old code to convert it, with the possible exception that it's something you expect to be maintaining and expanding indefinitely.

But if you're in a position to do so, I think it's definitely worth embracing jQuery. It is, after all, an excellent piece of code. And with the clout of MS and others behind it, it's only going to become more popular.

I will be doing so, even though jQuery wouldn't have been my first choice.

share|improve this answer
JQuery rocks now though :P – bybe Jan 17 at 22:10

While jQuery has awesome chaining, I find some drawbacks in it. In fact, the same aspects that are considered as "features" in some answers here, I consider as drawbacks.

  • I find prototype more readable. That is important when you are not working alone and need to teach others in your team what the code does, or rely on them to learn it. In jQuery the $ function just does too much stuff. In prototype it is split to several names.
  • Same goes for the chaining in jQuery. It is powerful but can actually be less comprehensible. It's a matter of personal style.
  • I find Ajax support in prototype to be better.
share|improve this answer
4  
Agree with the comment that jQuery's $ function does way too much! – singpolyma May 27 '09 at 1:39
5  
+1: Cannot agree more. Exactly my thoughts. I can barely read someone else’s jQuery-based code and sometimes I cannot read even my own. – Jan Zich Oct 12 '09 at 10:46
1  
You don't have to use just $ you can rebind it to another variable, or just use jQuery, which helps when working with other libraries – Alex Larzelere Jun 10 '10 at 16:10
@Alex Larzelere, It's still the same function, with the same interface and functionality. It just has a different name. – strager Aug 11 '10 at 0:00
@strager Different names affect readability. int a and int numberOfCows can be exactly the same but the latter is much clearer. – Alex Larzelere Aug 11 '10 at 12:38
show 2 more comments

Regarding the chaining thing: Prototype has had this for a while now, unless I'm missing something. From the documentation you can do this:

$('message')
  .addClassName('read')
  .update('I read this message!')
  .setStyle({opacity: 0.5});
share|improve this answer
12  
Yes, but in prototype you have to use invoke() to call the same method on all elements returned, and you can't chain at all beyond that point. $$('.foo').invoke('hide'); // no more chaining – Joel Mueller Oct 10 '08 at 6:50
3  
Joel said it. The point is that you can't write the following in prototype. $('a').attr('rel', 'external').click( function() { alert( $(this).attr('href') ); return false; } ).addClass('external_link'); – rfunduk Jan 21 '09 at 19:01
6  
@thenduks, this is horrible code to: 1. read 2. comprehend 3. maintain – Art Apr 30 '10 at 5:47
2  
@Art: I, and many others, disagree with you. I don't work with anyone who couldn't do all 3 things on your list there re: this code. Not to mention much more complex code than this (where the click handler is many lines long and other event handlers are chained, child elements are found and the selector backed out of with end, etc). – rfunduk Apr 30 '10 at 12:08
1  
@Art: the only reason it's difficult to read or comprehend is because SO is removing any of the normal tab and line formatting that would otherwise hopefully be applied to that function. If someone can't read well-formatted jQuery then chances are good they need more practice programming in general and their issue has nothing to do with jQuery. – Jordan Mar 9 '11 at 16:44

I spent a few hours (with a JavaScript expert) coding some features in Prototype for a Rails app about a year ago. The next day, I decided to try jQuery instead, and was able to code the same functionality in about an hour or 2.

The developer experience between the 2 was night and day. With Prototype, I had to look up every function I used, and always guessed wrong when trying to find the right function to use. With jQuery, I found that the method names were exactly what I would have expected. I also found the jQuery code to be about half the size.

I've not tried any other JavaScript libraries; I wish I had the time to look at a few others. But I'm definitely sold on jQuery.

share|improve this answer
19  
I find it very unsurprising that implementing the same thing on day 2 went faster. – npup Sep 13 '10 at 21:09

I think a lot of posts here are overlooking the fact that Mootools, while it does have overlap with jQuery in terms of what it can do, is not really comparable to it.

Mootools is a framework that is focused on extending core Javascript functionality. jQuery does have elements of this, but is really just a friendly API for traversing and manipulating the DOM. In that sense, it's questionable whether you'd call it a framework at all.

So if you want effects and quick and easy access to elements, go with jQuery. As many have said, it's by far the most popular and there's a huge community for it.

However if DOM tarversal/mainpulation isn't your main focus, and you're going to be focused more on using and implementing native JS objects like String and Array, Mootools might be better.

Mootools might also be better for bigger applications. Mootools is more about storing repeated procedures on object prototypes, whilst jQuery is more about plugins and good old-fashioned functions. (That said, there's nothing stopping you going the prototype route in jQuery - it will never prove itself obtrusive if you want to do your own thing and ignore its strategies).

Another issue, though, is proficiency. jQuery is much easier to learn. That alone might swing the argument for you. Mootools, as someone said, can sometimes seem like its own language, particular with its advanced simulation of a C-style class system, including inheritance, something Javascript natively lacks.

Mootools will also ultimately involve more lines of code as it doesn't quite go to the extent that jQuery does when it comes to chaining (and often manipulating at the same time) multiple elements. You either find those long jQuery chains confusing or intuitive.

In summary, it depends what you want to do. They are not interchangable, although they do have some crossover.

share|improve this answer
2 years later, as someone who switched from jQuery to MooTools I can't agree more. – Luigi van der Pal Jan 2 at 13:27

I migrated a project from MooTools to jQuery. Big turnoffs for MooTools were:

  1. Total DOM Pollution and "magic at a distance" by hacking all the base classes with 'monkey patching'

  2. epic slow performance in JavaScript

  3. significantly overweight codebase.
  4. Scattered/Incoherent API documentation.
share|improve this answer
I couldn't agree more about the Scattered/Incoherent API documentation. I have recently had to switch from JQuery to Mootools and the lack of organized documentation is driving me insane. – JimP Jun 14 '11 at 15:05
What do you mean by DOM pollution? – DesignerGuy Sep 17 '11 at 22:47
2  
@DesignerGuy The "DOM" is the tree of Objects in JavaScript. Every objects prototype is a node on the DOM. It puts needless large amounts of things in a> window.document.* ( which adds risk of conflicting with other things ) and b> modifies the prototype for all of JS things ( such as adding to Function. Object. Array. etc ) resulting in wasted code and memory on every thing everywhere. Whilst also adding risks of breaking native behaviour and conflicting with other code sets. – Kent Fredric Oct 31 '11 at 23:10

I find the scriptaculous documentation has, historically, been really lacking. Time has been spent documenting the API for all aspects of jQuery, proving good quality demos, examples and source code.

share|improve this answer
2  
Agreed! jQuery documentation blows prototype/scriptaculous out of the water. – TM. Jul 5 '09 at 17:16
2  
I thought the Prototype documentation was pretty good. Scriptaculous drags Prototype down. – Danyal Aytekin Jul 7 '10 at 13:25
+1 @danyal... the prototype documentation is great. Scriptaculous's docs are terrible, though. – pioto Dec 8 '10 at 22:05

If you're going to read the source code yourself to understand what is actually happening, Prototype is a good choice.

share|improve this answer
2  
True, but most these jQuery evangelists are not interested in reading source or contributing to the expansion of the code, most are in it to make life easier for them. With that being said, I can totally understand the need for these people to praise their holy grail for without it they would probably not be capable of deploying half the functionality jQuery has simplified for them. – i.ngen-io-us Dec 25 '09 at 11:22
4  
If you just cut and paste code you do not understand, you are no better than then next script kiddie. – Chris Ballance Dec 26 '09 at 17:17
2  
@ Chris Ballance. I never imagined myself reading prototypejs, mootoolsand jquery source code one year ago. Now, I always do it. It can be fun. – Thorpe Obazee Mar 5 '10 at 16:41
5  
If you have to read the source for a library in order to use it, something is wrong. Do you always have the source for glibc handy when you're working on a C program? If you have to refer to the source, then the documentation is lacking. – pioto Dec 8 '10 at 22:04
2  
+1 pioto. Interacting comfortably with a trusted library is not "cutting and pasting code". – Danyal Aytekin Feb 2 '11 at 16:46

In the end they all do the same thing. I started with Prototype + script.aculo.us but never liked it. Syntax and API felt awkward. Then I tried jQuery and fell in love with it. Coding style was more suitable for my preferences.

share|improve this answer

There was an excelent article on the jQuery vs MooTools posted on delicious this morning. It seems to have died at the moment but it is well worth a read if it comes back up again

jqueryvsmootools.com

Sorry i'm a new user so can't post hyperlinks at the moment :(

share|improve this answer
1  
jqueryvsmootools.com – dplante May 26 '09 at 3:52
5  
A vs B comparison made by B author :) – mykhal Jul 2 '10 at 6:35

It's a personal preference just like anything else. JQuery is very simple to use and its chaining capabilities are quite powerful. The documentation and distribution of plugins make it accomodating to most developers. I would suggest you dabble with jQuery and see if you like it before changing.

share|improve this answer
1  
I would argue that it's not entirely a personal preference - there are concrete factors such as speed, filesize, and features that differentiate the various popular javascript libraries. – matt lohkamp Oct 9 '08 at 9:42

I believe a majority of the popularity has been due to the lack of updates prototype have been seen recently for the downfall of it. While they just released an update last week, the large time gap hurt it.

With MS adding Visual Studio support for JQuery that will only boost it's popularity. Ideally they would open it up for support of any framework.

share|improve this answer

You'll find that most of the JavaScript libraries will accomplish what you need them to do, often with similar syntax. Often, it comes down to personal preference. I personally prefer MooTools, but the reason I think jQuery is taking the lead in usage is because it really makes an effort in the community area as it caters to beginners and has a lot of plugins that are accessible right from the main site. You definitely don't have to be a beginner to use jQuery, but if you're just starting out, it's a good place to start.

share|improve this answer

jQuery is, for me, the perfect framework choice in most web projects. It offers what I need the most: Easy DOM traversing/manipulation and good cross-browser compability, plus great documentation and lots of third-party plugins. OK, there are many good libraries out there, but I can't help instantly liking jQuery more than e g Prototype.

In a project where speed and code size has higher priority, I might use Robert Nymans DOMAssistant or DLite instead. If I am going to make some sort of big custom Webb app GUI I might turn to YUI or Ext JS. And if I would prefer a class-based approach when programming I could see why people like Mootools, qooxdoo or Prototype.

share|improve this answer

Well, a couple of months back I was deciding upon a framework to quickly implement some cumbersome javascript validations in an existing application. I checked out Prototype, Mootools & JQuery and finally settled on JQuery because

  1. The documentation was very intuitive & laced with examples.
  2. It seemed easiest to inject JQuery into the existing framework vis-a-vis other choices.
share|improve this answer

In addition even Microsoft has chosen it for inclusion in Visual Studio and they will even be providing support - it is especially useful when used in conjunction with the new ASP.NET MVC framework.

share|improve this answer
FYI: Palm includes prototype in their WebOS. – JJ Rohrer Nov 2 '09 at 16:46

I think because jQuery has been taken in by so many users that the community is ever growing, and it just keeps getting better because of it.

I have never created plugins for the other libraries, but in jQuery it is so easy to make a plugin, even if it's just for simple repetitive tasks you find yourself doing/copying code.

With the community growing ever more in jQuery, bugs are found quite quickly and so many people contribute to this bug finding and producing/debugging plugins.

When i used to use MooTools i loved it! But when jQuery came along, it was really nice, i found things easier to do (even the learning curve is fairly quick to get over) and it's just got better and better. The more you find yourself learning the easier things get next time around too (there are so many nifty ways of doing things in jQuery)

If you want readability, ease of development, and most importantly it' scalability, i would always choose jQuery.

jQuery selectors are just fantastic

Before you say it, im going to - im a self-confessed jQuery addict!

Don't get me wrong though MooTools and proto./script. are both very nice and also have their own benefits (MooTools i sometimes find smoother animating).

But i find there more benefits in using jQuery, and with it being newer it will probably still be around after the other two libraries become used less (or until something even better comes along! - Anything hiding up your sleeve Mr Resig?!)

share|improve this answer

Regarding readability, I think there are some clear cases when plain old JavaScript works just fine. There are other times when jQuery offers vastly superior functionality and the ability to transcend browser irregularities.
Still, I offer this example of some jQuery hogwash, is there any slicker or more readable way to do this in jQuery?

JavaScript:

myTextArea.value += myString;

Yup.

jQuery:

$('#myTextArea').val($('#myTextArea').val() + myString);

Say what now?

share|improve this answer
1  
$('#myTextArea')[0].value += myString; – itorres Mar 2 '12 at 21:45
2  
$('#myTextArea').val(function(i, val) return val + myString }); – alex Mar 28 '12 at 2:34
This example carefully omits the bit where jQuery syntax becomes more useful: finding myTextArea with proper error checking. – Álvaro G. Vicario Mar 4 at 10:36
  • single dollar($) function, while prototype use $, $$, $A, $F ... so easier to remember
  • effects integrated in prototype you need to ride along with scriptaculous to have this
  • shorter and easier syntax (its more like writing a sentences than javascript codes), $(function(){}); do the DOM ready check while in prototype you need to declare and observe onload method
  • tons of plugins and active community
share|improve this answer

Because it got Microsoft, & because of John Resig. John Resig is clearly making some noise here in Javascript space. He knows how to work the marketing side, even if it was not obvious.

share|improve this answer

Some people like jQuery more to Prototype because:

  1. In IE Prototype tends to be slower based on the benchmarks around the web
  2. Prototype is opiniated as it is closely related to Ruby on Rails. Note: Sam Stephenson is a 37signals employee and former Rails core developer
  3. Prototype does not come with animation out of the box as you need to plug scriptaculous as an add-on, in return you are adding more javascript library to your webpages and having to download more javascript library
  4. jQuery syntax for doing ajax and DOM manipulation is more concise
  5. Eventhough prototype provides many other cool and useful utility functions, most people use ajax and DOM manipulation more (see point no.4).

So use jQuery depending on what you need. If you only want a concise DOM manipulation and ajax library, jQuery should be worth it for you. But if you want to go beyond that (e.g you need OOP framework too) Mootools should be sufficient and much nicer compared to Prototype.

share|improve this answer

I've used both Prototype and jQuery. Neither are difficult to use, but jQuery is simply the easiest and has the tersest syntax. Why jQuery's Philosophy is Better shows a number of example comparisons between the two.

share|improve this answer

Modular design, and a newer approach at things. Seriously, try some of the jQuery plugins that do what scriptaculous and other Prototype-based libraries do, and you'll understand.

share|improve this answer

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