vote up 11 vote down star
6

(I understand that someone else asked a similar question and it was closed as 'argumentative', but I'm really interested in understanding the arguments around this.)

I know JavaScript really well. I've been writing it professionally for years. I've internalized a lot of the cross-browser incompatibilities and sketchiness, know DOM manipulation like the back of my hand, have worked with some of the best web developers in the industry & picked up a lot of their mojo.

I've been checking out jQuery. I understand the point of a javascript library (how many times have I written animation, getElementsByClass, and hide/show functions?). But to be honest, it seems like a waste of time to learn an entirely new syntax that isn't less complex. It seems like I'd be bashing my head against a wall to learn an entirely new interface to the same old JavaScript.

I'm not technically an engineer, so maybe I'm missing something. Could someone spell out the tradeoffs of jQuery? Is it really faster to learn and understand jQuery syntax than to just learn JavaScript?

flag
Thanks for the explanations. I'm sold: I hooked it into a prototype I'm working on, and instead of spending 4 hours writing a run-of-the-mill star rating system, I dropped in a widget & had it done in about 10 minutes. My knowldge of JS made it easy to mod. Woo! – Ellen B Apr 2 at 21:11

18 Answers

vote up 22 vote down check

There are a few big benefits to using a framework over homegrown/handwritten code:

  • Abstractions. I'm sure you're very proud of the fact that you've slung enough JS to be able to write animations from scratch. You should be! However, abstracting common functionality away from yourself is actually very liberating. You just call the method and know the innards will be executed, and executed well. Even if you're very fast at writing the low-level stuff yourself, that's still time you've spent on that instead of solving today's problems.

  • Common language. Using a common framework is like speaking a common language. You can collaborate with other developers very easily, and each can pick up where others left off without friction. (Compared to stepping into an application which uses a homegrown library for the things jQuery can do.)

  • Experts. The people working on jQuery are JavaScript gods. I am really, really good at JavaScript, and you probably are too, but there's a big difference between normal good and jQuery good. A team of insanely good people are constantly poring over a small set of common functionality - tuning it, tweaking it, enhancing it to make it the best it can possibly be. That represents a huge number of man-hours a single person like you or me simply cannot reproduce, no matter how good we are. And if you are as good as the jQuery guys, you can only benefit by combining your talent with theirs and contributing to the jQuery codebase. It's a melting pot of insane talent.

link|flag
I'm not sure I agree with the "common language" part. JavaScript can just as easily be a common language as jQuery (and at the moment is probably moreso, though jQuery is certainly picking up in popularity). – Daniel Lew Apr 2 at 2:31
@Daniel yes, but the question is asking why use jQuery instead of manually implementing the things jQuery does. The "common language" I am referring to is stepping into an app that uses jQuery vs stepping into one that uses something homegrown. – Rex M Apr 2 at 2:33
Ah, so you mean a common language for the abstraction you were talking about in the first point. I agree with that. – Daniel Lew Apr 2 at 2:37
6  
Whoa, your last point there is a little over the top. Have you looked at the latest jQuery code? Some of it is downright crap. Here's a polarized opinion on the matter: newsgroups.derkeiler.com/Archive/Comp/… – JPot Apr 2 at 4:22
1  
Somewhat humorous answer that deflates jQuery as the "pinnacle of Best Practice" (near bottom): stackoverflow.com/questions/676249/… – JPot Apr 2 at 4:30
show 3 more comments
vote up 11 vote down

I'm not technically an engineer, so maybe I'm missing something. Could someone spell out the tradeoffs of jQuery? Is it really faster to learn and understand jQuery syntax than to just learn JavaScript?

jQuery is more than "just another interface" to Javascript. It allows you to express yourself in ways that are more compact and succincter than the corresponding Javascript implementation. At the same time, it's clearer and much more powerful. Specifically, the benefits you get include:

  • Expressiveness. jQuery is essentially a DSL for DOM manipulation and querying. This specificity is a major source of its utility and effectiveness.

  • Cross-browser. To a very large extent, jQuery is "write once, run anywhere". Even in 2009, this is still a surprisingly rare feat for web-based platforms. It's gratifying and relieving to know that you won't have to waste time debugging obscure problems on IE6 (well, most of the time).

  • Highly complete documentation. As a developer, I prize APIs and frameworks that have taken the time to spell out what all the moving pieces are supposed to be doing. Nothing is more encouraging than knowing that (1) things are stable enough that writing documentation isn't an attempt to hit a moving target and (2) things are useful enough that they've attracted enough people to flesh out the documentation fully.

In sum, the difference between Javascript and jQuery is analogous to the difference between assembly and higher-order programming languages. Although they're both technically both "an interface to machine language" and can both do similar things, the latter is considered far more powerful because of how easy it is to represent things and develop rapidly.

link|flag
vote up 4 vote down

You can't learn jQuery without learning JavaScript, and you can't be a jQuery guru without being a JavaScript guru.

That said, it really is much faster to do things with jQuery than with "bare metal" JavaScript. Moreover, the way one works with jQuery is at a far more abstract level than the way one works with "bare metal" JavaScript. In addition, the jQuery syntax is very basic and not at all hard to learn, although the way you think about jQuery is very different from the way you think about "bare metal" JavaScript but enables you do to much more, much more rapidly.

link|flag
vote up 4 vote down

community support

other developers writting and testing code, make it possible for you to do things you simply do not have time to do. Its not about doing anything you do not know how to do, its about doing things quickly, efficiently, and of very high quality (its already been tested).

link|flag
vote up 4 vote down

One thing I don't see mentioned is that the library is written to work cross browser on a wide range of popular browsers and platforms: IE6+, Firefox 2+, Safari 3+

That alone is reason enough to use jQuery then to write your own JavaScript and have to worry about cross browser issues yourself.

link|flag
100% agree - that's why I use it even for the most trivial jobs now :) – Paul Suart Apr 2 at 19:04
vote up 4 vote down

From the sounds of it, you know much of the same stuff that jQuery knows about the DOM, and I can only assume you've built-up a nice DOM toolset for yourself over the years that incorporates all of this knowledge. In short, No, you don't need to use jQuery. However, some of the rest of us do not know as much about the DOM, and jQuery levels the playing field so we can get on with getting work done for our clients.

That is not to say you should not learn jQuery (as opposed to using it). You may pickup a few things you didn't know. The 3 main features that distinguish it from other DOM libraries (including your own probably) are:

  1. built-in support for CSS selector syntax, useful for finding elements
  2. methods that operate on the set of wrapped elements
  3. chaining. Every method in jQuery.prototype (with "setter" behaviour) returns this

Personally, 1) and 3) don't hold a high premium. But 2) turns out to be huge for me. I never realized until jQuery how much my code tended towards operating on a set of nodes rather than a single node (if someone would have asked me I would have guessed the opposite tendency). 2) virtually eliminated all for loops from my code (or .forEach or however else I tended to abstract it), which was actually quite liberating. Now I notice it's the rare occasion where my code must operate on some single element.

link|flag
Hey, you convinced me if not Ellen B :) – SirDemon Apr 2 at 19:38
vote up 3 vote down

Speed of development and turnaround of code.

link|flag
vote up 2 vote down

One thing I haven't seen mentioned in the other answers is that, eventually, someone else is going to have to maintain your code. If it's all custom, they'll have a rougher time of it than if a more standard library is used. If that's not of any concern to you, and you don't think you're likely to need any of the really slick jQuery modules, then keep on with what you're doing.

link|flag
vote up 2 vote down

For me, there are several benefits, like speed of development, etc.

But at the end of the day, it boils down to one thing: It removes a HUGE amount of the cross-browser BS that can eat up so much time and resources, so I don't have to deal with it

link|flag
vote up 1 vote down

jQuery allows you to write shorter, cleaner code that's easy to understand. Many people use it, so there are many plugins that work along with it, minimizing bloat. The same may not be true of your own personal library.

link|flag
vote up 1 vote down

If you know JavaScript really well you should also know that jQuery's syntax isn't different from JavaScript's syntax.

What you might be referring to is the chaining idiom (used everywhere in jQuery) which seems to make things look very different from other sort of code. Well there's a reason for that, it's because it bonds really well with how the DOM works.

link|flag
I think chaining is designed to make coders feel clever about writing one-liners instead of writing readable, debuggable code. I see no advantage in chaining over multiple lines of code, and I've yet to meet anyone who could convince me otherwise. But I do like the rest of jQuery. – Daniel Lew Apr 2 at 2:34
Agree with @Daniel here. – Rex M Apr 2 at 2:34
There is a difference in download size. It might be trivial, but that's one advantage to chaining. – VirtuosiMedia Apr 2 at 3:33
1  
If you're worried about download size, get a JavaScript minimizer; there are plenty out there. – Daniel Lew Apr 2 at 14:24
vote up 1 vote down

If you truly know JavaScript, you'll be at running speed with jQuery in under a week's time. If you don't already know your way around JavaScript, adding a layer on top might do more harm than good. But that's just like anything else!

You're going to be writing better looking and easier to understand JavaScript at a faster pace and only once — not once per browser. Downside? You're going to tack on another ~50KB of JavaScript. That's what caching is for :)

link|flag
vote up 1 vote down

I was working on a gallery program for a client (which is now exhibiting inexplicable behavior in IE6 and 7 - surprise, surprise - but I found that when I switched from bare-metal Javascript to jQuery a lot of the work got much easier. To me, it makes available the CSS view of the DOM while writing Javascript - which makes traversal and manipulation much more intuitive. Also, the cross-browser compatibility and brevity is wonderful.

link|flag
vote up 1 vote down

It doesn't really matter if jQuery is great or awful. It's the powerhouse JS library now, used on a huge number of pages, and future browsers will have to accommodate it or be seen as themselves buggy.


What I don't like about jQuery: I'm not that thrilled about how it ignores mobile phone browsers in its test suites. It gets pulled in on all kinds of pages on mobile phones, and yet it makes no effort to ensure it works well on them.

link|flag
vote up 0 vote down

Jquery is javaScript in the hand of the designer.

It is as easy as writing CSS styles on an element.

Also Jquery is the easiest to understand, write maintain, add plugins.

link|flag
vote up 0 vote down

Because jQuery is awesome

link|flag
vote up 0 vote down

jQuery degrades gracefully and it's one of the fastest (not THE fastest anymore though):

http://mootools.net/slickspeed/

There are many other frameworks out there, and whichever you choose, you probably wouldn't go wrong, but having uses jQuery myself, I'd definitely recommend it.

:)

link|flag
This test is very old, plus selector speed != not over all speed. – Jourkey Jun 14 at 22:25
vote up -1 vote down

jQuery is a pitiful excuse for a cross-browser script. Nobody who knows basic browser scripting would use it for anything. If you have experience, you already have common functions and they should not need to be rewritten endlessly (that's the sign of a bad cross-browser script like jQuery.)

Chaining is as simple as: return this. And it's a monumentally stupid thing to do (makes debugging more difficult.) The last thing the average JS neophyte needs is to make debugging more difficult.

Terribly slow as well:

http://dante.dojotoolkit.org/taskspeed/report/charts.html

JS Gods? Get real.

link|flag
1  
I admire your perserverence in the face of incredible odds. Your library is nicely built. – Nosredna Jun 14 at 22:20

Your Answer

Get an OpenID
or

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