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

I've come across a couple questions, such as this one, and I really have to wonder why "Use jQuery" seems to be the answer when somebody asks how to do something in JavaScript. I understand that jQuery can save you a lot of time, and can help you out a lot, especially when you are doing a lot of fancy JavaScript in your site. However, in instances like this, and in many other instances, it seems like it's just jumping around the problem instead of answering the question.

I also feel like this builds too much dependency into libraries. I've seen way too many developers that simply rely too much on libraries, and if they encounter a situation where they didn't have the library, they would be completely unable to function. I feel like there are already enough developers who don't know JavaScript, without just telling everybody to not learn JavaScript, and use jQuery.

So, just to reiterate the question. Do you think there's too much of a tendency to use jQuery, for small pieces of JavaScript, when most of the functionality of jQuery isn't being used. Should developers be fluent in the use of bare JavaScript so they don't get too dependent on using libraries?

[Additional related conversation topic]

Does the existence of jQuery give too much slack to web browser developers who write the JavaScript engines? If we just have workarounds to cover all the inconsistencies in JavaScript, what pressure is there on browser makers to ensure that their JavaScript library works as it should. I feel like this extrapolates the same problem discussed in SO Podcast #36 of "be conservative in what you send, liberal in what you accept". By being so liberal with bad JavaScript engines, and using a common library to work around the flaws, we are promoting their use, and extending the problem.

share|improve this question
8  
Libraries and built-in features exist in every language, and there's nothing wrong with them. – TM. Jan 23 '09 at 3:14
20  
Nope. 42 is always the answer – krishna Aug 23 '09 at 6:55
6  
What I have noticed is the incredible influx on the amount of self-professed 'web developers' who use jQuery. The simple reason being that if left to their own abilities, they would be incapable of overcoming the cross-browser and cross-platform inefficiencies through the use of bare JavaScript. Yet, the reality of the matter tends to be if you have indeed coded from the days of HTML 4.01, and before, you will easily find work arounds for any and all cross-browser issues withuot having to resort to loading libraries you will rarely use. That's my personal experience. – i.ngen-io-us Dec 25 '09 at 9:09
13  
Why not use libraries? Is it worth trying to save a few Kb of data transfer (by not using JQuery) at the expense of more time to debug the code? My time is worth gazillion times more than a few Kb extra libraries. – Rosdi Kasim Apr 20 '10 at 16:14
4  
@Kibbee: You don't go far enough: JavaScript is already too easy to use! Web developers should learn browser-version-specific exploits that allow them to embed machine code for every extant CPU in their webpages. Because making stuff harder than necessary is the way forward! – j_random_hacker Sep 5 '10 at 16:07
show 4 more comments

closed as not constructive by Bill the Lizard Dec 14 '12 at 13:21

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.

22 Answers

Do you think there's too much of a tendency to use JQuery, for smal pieces of javascript, when most of the functionality of JQuery isn't being used. Should developers be fluent in the use of bare Javascript so they don't get too dependant on using libraries?

No.

JQuery, Prototype, Dojo and countless other frameworks provide a baseline of how JavaScript and specifically DOM manipulation should work. They allow users to focus on solving business problems at hand instead of fiddling around with browser quirks.

You may as well ask if we're too dependent on java.util or java.lang.

share|improve this answer
6  
@Flea: Exactly. jQuery and other libraries take the "magic" out of Javascript and allow casual Javascript programmers to make some really outstanding things. Take XHRs as an example. You can either try to compensate for all the quirks in various browsers, or use jQuery and be confident it will work. – William Brendel Jan 23 '09 at 2:23
65  
+1: One thing that always cracks me up is the correlation between people who think using jQuery is overkill and people who write really naive JavaScript. In my experience, the more you actually know about cross-browser JS, the more likely you are to advocate jQuery (or your favorite lib of choice). – nezroy Jan 23 '09 at 2:32
9  
+1: Agreed. Who wants to spend all their time worrying about whether or not their javascript will work in ie/firefox/safari/etc? jquery makes things much easier, and I would disagree with the statement that using jquery means you don't have to know javascript. – Kevin Tighe Jan 23 '09 at 2:33
9  
@kouPhax: Javascript and DOM vary from browser-to-browser, so you might know how to do something in IE, but not in Firefox, or vice versa. Memorizing trivia about how IE/Firefox/Safari break certain things doesn't make you a better developer. Recognizing the value of abstractions like jQuery does. – William Brendel Jan 23 '09 at 17:17
32  
I think that jQuery is over suggested to people new to JS, I didn't touch a framework, in JS (prototype at the time, now jQuery) until I understood JS. Know the language before you learn the framework. – UnkwnTech Jan 24 '09 at 10:35
show 10 more comments

Yes and No.

Developers should always be able to 'rough it' if need be. But in a corporate environment where your customer wants more cowbell yesterday, you need to be able to give it to them.

Why re-invent the wheel?

share|improve this answer
I agree and that is basicly what my answer is getting at I love and use jQuery all the time, but I didn't use it until I understood how to do it without jQuery, I think that is why I didn't like Ruby, to much magic. – UnkwnTech Jan 23 '09 at 2:14
38  
Speaking of wheels, the reason we need JQuery is becuase the people building the wheels keep sending us square wheels. So we built JQuery, which is this thing we attach to the wheels to make them round. The real fix for the problem is to get them to stop sending square wheels in the first place. – Kibbee Jan 23 '09 at 3:17
5  
I signed on just to +1 you for your use of "more cowbell". Than and it was a good answer. – unforgiven3 Jan 23 '09 at 4:11
2  
We need to know how to invent the wheel in the first place though. – Humphrey Bogart Jun 17 '09 at 0:32
1  
Three years later, and this is the best answer here. – lunchmeat317 Feb 18 '12 at 6:54
show 1 more comment

Do you think there's too much of a tendency to use JQuery

To use JQuery? No. It's a reasonable JS library with many purposes, in real life.

OTOH to answer SO questions, sure. It's the stock answer for anyone who doesn't know JavaScript, or doesn't even know JQuery, but answers "use JQuery" as a knee-jerk response that earns points.

I see the JQuery mafia have already voted your question down several points - congratulations. Me, I'm automatically voting down "use JQuery!" answers to questions that ask for a JavaScript solution. SO should be about learning.

share|improve this answer
8  
+1: For SO, I agree that "use jQuery" is an unhelpful answer. Understanding the details of the various quirks is worth the effort. But once you've dealt with and understood enough of these, the answer to whether or not you should use jQuery for most tasks in the "real world" becomes self-evident. – nezroy Jan 23 '09 at 2:13
1  
++I agree, mostly. I will make an exception for questions that involve lots of tedious DOM traversal; i see entirely too much broken code out there from the .nextSibling.nextSibling.firstChild.nextSibling fans... – Shog9 Jan 23 '09 at 2:18
2  
You'll be using most of your votes up pretty quickly each day :-). – paxdiablo Jan 23 '09 at 4:03
lol, yes, between that and "use regex!"... – bobince Jan 23 '09 at 11:44
3  
I'm getting the impression that the best way to get points is to answer that the best way to get points is to answer "use JQuery". – intuited Aug 21 '10 at 5:08
show 1 more comment

Frameworks are awesome; I love 'em. Unfortunately they're no substitute for understanding the technologies upon which they're built, and upon which those technologies are built, and so on down the line. I'm all for progress in software, all for libraries and frameworks and how much more they let me do in so much less time than ever, but way more than all that, I'm dead-against being okay with not understanding exactly what it is the tools, the frameworks, are doing for you, how they work, and how to live without them.

A few years ago, I worked with a bunch of ColdFusion developers. ColdFusion is the red-headed stepchild of Web-app frameworks; it gets no respect, which is frankly a shame, because as strange as it is, and it is strange, it's actually a decent commercial product; I even use it myself from time to time. Anyway these developers had built for their employer a fairly massive little online enterprise; so successful was their collective effort that it began, as usage grew, to buckle and collapse under its own weight; every day, at peak hours, the site would slow down, then crawl, then hang, then time out like crazy, and once enough customers called to complain, the owner would rush into the tech lead's office demanding that something be done. The tech lead, a good guy, but alas one with no formal CS training and knowledge only of CF, could only respond by bouncing all the machines, declaring the problem "fixed," and sit back and wait, until it happened again. Which it did, every day, with increasing catastrophe, for years.

In the end, we discovered the problem was being caused by the obscure, counterintuitive and undocumented way ColdFusion handles connection pooling. The tech lead could've had no idea this was the case, though, because he didn't know what connection pooling was -- nor did he suspect even for a moment the config settings he'd specified himself, in earnest attempt to improve the performance problems, actually made them horribly worse. All he knew was that the ColdFusion Administrator gave him a couple of radio buttons, a textbox and a submit button; he didn't know what that radio button did, or what it actually meant to set timeouts to sixty seconds instead of ten. Ultimately, all it took was a five second config tweak, a JVM restart, and that was it -- the problem literally went away immediately, for good.

Frameworks are awesome. JQuery's awesome! But it's better to know JavaScript cold, know the DOM, know Ajax design patterns, know the intricacies of the language, know how to program asynchronously, etc., than to be a JQuery super-ninja -- because eventually, you'll run into situations JQuery wasn't designed for, or doesn't do quite right, or the project manager simply won't allow it, and you'll have to figure things out for yourself. To the OP, I say your instinct is right on the money -- JQuery is often the answer, but the real answer is not to have to rely on it in the first place.

So in other words, No. :)

share|improve this answer
3  
Not to mention the fact if you need to extend it to do something it doesn't do. Ignorance of the underlying technologies will only get you so far. BTW, a tech lead with no REAL technical knowledge? hmmm. – Agile Noob Jan 24 '09 at 12:22
Tell me about it. ;) – Christian Nunciato Jan 24 '09 at 13:07

Short Answer: Yes

Myself I try to stay away from frameworks because I think they create to much magic.
alt text
I don't mind using a framework like jQuery, but only after I learned how to build the code myself.

share|improve this answer
7  
We might disagree on what we convey 'magic' to be, but to me there is no such thing as 'magic'. It's code, that works, written explicitly indeed. I just tell it what I want and couldn't care less on how to do it. That's the same as encapsulation and atomicity on a 30 member project. – Filip Dupanović Jan 24 '09 at 13:48
But, you need to know what the framework even if you don't want/have to do it. You still should be able to do it without the framework. – UnkwnTech Jan 25 '09 at 4:46
3  
Knowing the framework is as simple as reading the jQuery source code. There really is nothing "magic" except it would have taken you 10 times longer to figure out the same stuff that is written in that file. – Jeff Meatball Yang Jun 23 '09 at 8:37
1  
Yep, 'the magic' indeed heh. Nice one! – i.ngen-io-us Dec 25 '09 at 9:15
2  
"but only after I learned how to build the code myself." - do you take this approach with all libraries? If so, that's a very cautious and careful approach but I do wonder whether that's good use of your time. – Pool Mar 16 '10 at 16:59
show 3 more comments

I think the libraries are great.
I use them all the time.
I also have my own small utilities library for when I don't need a Beowulf cluster to count to 10.

It seems a lot of JavaScript developers are really jQuery button clickers, judging from some of the questions I've seen. -- like 'how can you tell which option has been selected in jQuery?' and the like -- This is very basic, core JavaScript and developers should get to know this stuff.

I say use the libraries BUT take the time to learn the core it'll make you a better JavaScript developer.

share|improve this answer
3  
Even if you know how to do something in JS that doesnt mean that jQuery doesnt have some usefull shortcut. A few days ago i was looking how to do exactly what you said, because i never used option in jQuery before. – IAdapter Jun 12 '09 at 18:51
These SO questions exist because jQuery has different DOM idioms than plain JavaScript, for better or worse. – Matt M. Mar 14 at 4:16

It reminds me of how some people always reply to computer/OS problems with "Just buy a Mac".

There's a touch of zealotry in there.

share|improve this answer

There are a lot of questions within this question, but I'll answer the primary one based upon a lot of experience with the library itself and JavaScript: jQuery is always the answer. I don't mean to say Prototype or Mootools or Dojo can't be the answer, but I can tell you that even if you are doing simple JavaScript, then you should start with a library. For the last year, every project big or small that I work on, I always start out by saying to myself, "Oh, I just need a few selectors, or maybe an event model." Before I know it, I'm at 100+ lines of utility functions to handle that and the cross-browser issues. Given the efficiencies you gain and the ability to compress/cache the library, it really does makes sense.

The one caveat I will put to this is that you can't build a full-fledged Web application without being proficient in custom JavaScript. The library is a tool, not an architecture. It can't be the whole solution to your problem. It does not answer any questions you have related to the problem domain -- it just helps you solve the problem quicker once you know the solution.

share|improve this answer

Unlike some other Javascripot libraries, jQuery doesn't alter Javascript in any way. jQuery provides a series of convenience methods which make common and repetitive DOM manipulation tasks easier, and in doing so insulates you from some of the tedious DOM details and cross browser quirks. I don't think you can work effectively with jQuery without knowing Javascript, but you could still use it without a thorough knowledge of the DOM.

Is jQuery used too much? I think it depends on the situation, if all you're using it for is trivial DOM manipulation (e.g. showing/hiding form fields depending on checkbox values), I'd question whether the "weight" of the jQuery library is worth it. If on the other hand you're already using jQuery for other stuff on the same page (or can reasonably expect users to have it cached from another page on the site), I don't see a hassle with using it for "trivial" stuff as well.

Would I prefer a programmer on my team to know how to code against the DOM without jQuery? Absolutely. Would I want a programmer on my team used jQuery for any moderately complex Javascript task rather than deal with cross browser and other random issues? Definately.

share|improve this answer

I have X number of hours I can be effective working a day and Y number of hours worth of stuff I need to get done each day. Unfortunately I'm usually in a position of Y > X. If jQuery (or any other library) can change that equation in a way without accruing technical debt then I am thankful for the library creators efforts.

share|improve this answer

I think this article really brings it home:

The Burden of Popularity

It’s only natural that, once you reach a certain – for lack of better words – popularity, you open yourself to incredible amounts of scrutiny. Everyone has an opinion about the spotlight, it seems. For example, you’ve no doubt heard endless criticism of Catholicism. “They worship statues.” Is that the only religious body with questionable history? Surely not; but it’s the largest. The United States is one of the most powerful countries in the world. Naturally, everyone has an opinion. “Americans are ignorant and fat.” Ignore the good, and spotlight the bad.

jQuery is the most popular JavaScript library, by a landslide. Again, everyone has an opinion. I’ve read countless criticisms – everything from what it doesn’t do, to the structure of the code base. However, perhaps the biggest criticism of jQuery comes from a simple truth: its users, as an average, are less experienced with vanilla JavaScript, when compared to, say, Mootools. While some consider this to be a downside, I honestly view it as a strength – in an odd way.

....

Compare this to simple Math. When you first learned how to add 2 + 2, did you do it the official way? I sure didn’t; I used my fingers. I bet you did too. Though it’s a huge simplification of the issue, is jQuery not the same way? It provides new JavaScript users with a simple and exciting entry point. Do you honestly expect them to learn about closures and objects and global variables before they even learn how to do something fun? Come, come, now.

The strict, “Learn it the right way, or you’re a fool” viewpoint is naive, and doesn’t take into account the various learning styles that we all have.

...

It’s undeniable that many of us feel a need to be trail blazers. Remember when parents began signing up for Facebook? Critics widely declared that the end of Facebook was near. Once you sacrifice exclusivity for wide appeal, people instinctively begin searching for the next thing. But that didn’t happen. The same is true for jQuery. Sure, some users have moved on to more comprehensive frameworks, like Dojo. But that’s to be expected, and should be a badge of honor for jQuery. For many, the learning cycle goes like this:

  • Learn jQuery; get excited.
  • Realize that you have no clue what this refers to in different situations. Learn JavaScript, and incrementally improve your old jQuery code.
  • (Optional) Advance your skills to the point where you need a more comprehensive framework for building large applications. Begin reviewing additional tools, such as Dojo.
share|improve this answer

JQuery. .

share|improve this answer
3  
Well as this isn't the accepted answer, I guess not. :) – Quibblesome Jan 23 '09 at 17:06
1  
The answer is allways 42... but jQuery is a nice comment to the answer. – Gerrit Jun 23 '09 at 10:27

No. Improvements in software development rely heavily on better and better abstraction layers. Back in the day, people argued everyone should write everything in Machine Language. They were wrong.

jQuery is a very useful abstraction layer that makes it much faster and easier to use Javascipt. It should be embraced fully. As people get more proficient in jQuery, they'll also grow in their Javascript understanding.

share|improve this answer
I've seen many projects that abstract so far away from the original task that all the efficiency and maintainability are destroyed. Beware zealots of all flavors. Those that don't abstract enough, those that abstract too much, and those who think any single tool is always the right one. – Jay Jun 30 '10 at 18:45
I agree that abstractions are critical, but not over-abstracting (joelonsoftware.com/articles/LeakyAbstractions.html ) – Luka Ramishvili Apr 27 '11 at 5:12

No.

I love jQuery since it allows me to get things done. I hate JavaScript as it just seems like you need to know so many quirks to make it work in all browsers and then the language itself is so ugly and hard to debug.

However these days people expect web sites to be super fancy and they should never leave the page and jQuery allows us developers to give this stuff and have some sort of life.

Like I know some people here have posted it is the easy way out and you have no will to learn the hard way. I disagree with this so much.

First if doing it the hard way is just so great why are we using computers? I thought it was to make our life easier? Why don't we just do everything by hand and forget using computers at least where not taking the hard way out.

Second it is still extremely hard to be a developer and we need tools to make our lives easier because people expect more and more. Back in the 90's when websites just first came out all they where static pages with some images on them.

Now web sites need to be tied to databases, use ajax, possibly fancy things going on with flash, nice web site designs and etc. This is what people expect. In the 90's all you needed was just plain old notepad that you could get the job done now if you did everything from hand in note pad you would not get anywhere.

It still is not easy being a programmer(if it was then we would not be needed). I am currently making a web site and to make it I am using jQuery, C#, asp.net MVC, linq to sql, ms sql database.

That is a ton to learn and lets face it if you get a job 90% of the time you have to know more then one thing. I can't just go I am going to learn C# and that's it your going to have a hard time finding a job since they will want on top of it .net, php or whatever. So we need libraries to speed up learning and hide us from stupid things like browser compatibility otherwise there is no way to learn it all.

"I also feel like this builds too much dependency into libraries" - Original Post

Oh I agree with this I don't know where I would be without libraries and I really don't care. Thats just how life is you get dependencies on stuff.

How many people cook these days? Most people buy fast food or premade stuff not many people cook from scratch what happens if that disappears over night what would people do? How about your car do you the in and outs of your car?

Thats why we live in a society, so we all can build off other people strengths and we don't have to do it all ourselves.

Finally in the end does anyone care if you use stuff to make things faster. I think your boss cares if you tell them that your not going to use this library and do it the "hard way" and cost the company 100's or 1000's of dollars more then if you just used the library. I think they will fire your ass so fast you won't know what hit you.

share|improve this answer
i disagree that Javascript is ugly - i suggest reading this, as I couldn't say more javascript.crockford.com/javascript.html and i disagree to this line too: First if doing it the hard way is just so great why are we using computers? – Luka Ramishvili Apr 28 '11 at 5:05
that's right, but to make life easier, someone must build computers, right? and that's not gonna be a easy way. I think you run into a paradox here. but your opinion about using jQuery to ease lives is rite :) – Luka Ramishvili Apr 28 '11 at 5:14
@ Luka Ramishvili - To each there own. I still find it ugly. since I written it I founds some better ways to make it better but still think it is ugly(maybe not as ugly as Vb). Yes someone has to do but that does not mean that we all have to do it. That's why we pay them the big bucks to make our lives easier. My point is if everyone started from scratch for every single thing we would not get anywhere. – chobo2 Apr 28 '11 at 17:47

I'm pretty sure that if we jump in our time machine and go back to the 1960s and 1970s you'll find programmers arguing that FORTRAN and other HLLs are not the answer and that programmers need to know how to write code that runs on bare metal, and so on, and so forth.

Some programmers do need to know how the CPU instructions work. Most don't. The same is true of Javascript and jQuery. If you know enough Javascript that you technically don't need jQuery, I admire you. You're a better programmer than someone who can't code without jQuery. But that doesn't mean he isn't a programmer or that he can't get things done or that jQuery isn't the answer for him just because you don't need it.

share|improve this answer
"But that doesn't mean he isn't a programmer". If he cannot use JavaScript to adapt jQuery to his needs etc. he is NOT a programmer. At least a not front-end one... – BYK Jan 24 '11 at 7:18
If you write programs, you're a programmer. Maybe you just add some pizzazz to your home page. That's programming. Or arrow key navigation to your online portfolio of photography. Also programming. We can talk about whether you'd hire him to be your colleague or choose him as a technical co-founder, I'm all for minimum standards. But "programmer" is someone who programs, and some programmers will do just fine starting with jQuery and learning a little more as they go along. – raganwald Jan 24 '11 at 14:56
3  
If I duct tape a leaky pipe, am I a plummer? – JD Isaacks Feb 15 '11 at 20:24

Kind of.

I understand why jQuery answers are so common -- it's a good, capable library that helps minimize the code you have to write to accomplish something.

But, I do think it gets abused. sometimes it really feels like a cop out. When it's a 1-line answer saying Use jQuery, then it's definitely ridiculous. But, of course, this depends a lot on the author.

On the other hand, it does help to know the core of JavaScript and DOM manipulation so you can understand why jQuery is so helpful. No library should ever become a dependency or bandwagon.

share|improve this answer
However people are lazy, i only had few JS problems in my whole life that i couldnt conquer. People are lazy and ask for 10+ lines of JS when you can do that in 1 line of jQuery. – IAdapter Jun 12 '09 at 18:54

"Does the existence of jQuery give too much slack to web browser developers who write the JavaScript engines?"

That's absurd. The JS engine developers write things differently because they think their way is better. Engines continued to be developed with different standards for years and years before jQuery or any of the other major frameworks ever existed. There's no way that jQuery would be the sole thing keeping them from changing their ways, especially when jQuery developers can simply adapt the framework to new engine code.

Sure, it'd be great if all the JS engine developers agreed to use one engine, but it's a difference between what's ideal and what's realistic.

Personally, I'd rather more people use jQuery. The Internet's filled with small sites created by designers/developers that know JS just well enough to get their script working in one browser, but it breaks in the others. If those same people simply used jQuery to eliminate a good chunk of cross-browser problems, it would be a far user-friendlier place.

share|improve this answer

Using frameworks is an absolutely great (if not required) safety net in this cross browser slush we find ourselves in.

jQuery is not the only option. It depends on what you are doing. jQuery focuses on manipulation of the DOM. If your project is not doing a lot of that, another framework may be a better choice. It depends on that strengths you need.

However, understanding the underlying technology and how it functions is vital to writing code which property takes advantages of browser strengths, and steps around their weaknesses.

share|improve this answer

I still remembered I got jQuery and UI for just a colorpicker and some sliders (for a little drawing app). I had many copies of jQuery and UI on my github JavaScript projects. For the long term, I should include jQuery because my app gets complicated over time. (is it a hotlink to link jQuery from Google AJAX APIs?)

Sometimes the majority decides if a browser is "compatible", if every used jQuery, then every browsers will eventually use jQuery as the JavaScript/DOM specification.

When answering a question, if you are temped to answer "jQuery!", provide a rational explanation to it and how the workaround works.

share|improve this answer

For every project I work on depending on what needs to be done, I either use JQuery or ExtJS. ExtJS has the benefit of well standardized components and a large community which creates plugins for them.

share|improve this answer
1  
ExtJS started as free project, but its not free anymore. Why invest time in learning something that you might not have in your next project? – IAdapter Jun 12 '09 at 18:58
True, but at the same time you can buy a personal license to use it anywhere – Ballsacian1 Jun 13 '09 at 3:40

jQuery should replace Javascript in the browser engines, imo.

Heck, I don't even know HTML because I know JSF.

This is why programmers don't use assembler anymore. We use high-level languages that let us focus on the big problems.

share|improve this answer

No,

It is much more than javascript, and it makes web programmer's life easier and powerful. If you use javascript why not to use Jquery? And, what is your better alternative?

It is open source, and 29.400.000 results come when I wrote "Jquery" to google; more people is a great advantage, you can find lots of solutions for any jquery related problem and lots of library for any specific situation.

It is browser independent, ajax friendly; it has lots of selectors which increases control of html and css; it is very flexible and easier; it supports animation.

share|improve this answer

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