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

I recently stumbled upon some javascript forums (sadly, link is lost somewhere in the universe), where you could feel real hate against jQuery for not being... any good?

Most arguments seem to make sense actually.

Now, I really like jQuery, mostly for letting me concentrate on things I want to do rather on browser inconsistencies and it actually makes AJAXing with cool (or overused?) effects fun.

But if really is something rotten in the core of jQuery, I don't want to rely on it the way I actually... rely on it.

I don't want to start yet another argument over which framework is the best... but... Which framework is the best (joke)? As a case usage, think about small to medium web and it's administration.

I'm just trying to figure out, if stuff in some framework or pure javascript with few mine functions really makes difference.

Edit:

I actually tried to had a normal objective discusssion over pros and cons of 1., using framework over pure javascript and 2., jquery vs. others, since jQuery seems to be easiest to work with with quickest learning curve. However, some people just don't understand it and think that I'm starting yet another flame (what I am not). I am actually voting to reopen this question.

Also I'm really interested in:

  • Does jQuery heavily rely on browser sniffing? Could be that potential problem in future? Why?
  • I found plenty JS-selector engines, are there any AJAX and FX libraries?
  • Is there any reason (besides browser sniffing and personal "hate" against John Resig) why jQuery is wrong?

jQuery actually, as most used, stands for other frameworks also.

share|improve this question
3  
I really don't see the point of this... it's such an over-discussed topic already. – Jimmy Cuadra Feb 26 '10 at 8:54
"I don't want to start yet another argument over which framework is the best", ". Which framework is the best? " what?.. – Filip Ekberg Feb 26 '10 at 8:55
@Jimmy - yes but mostly you always see one point - on jQuery friendly sites jQuery ftw, on some js forums jQuery sucks, you never see the comparison side by side – Adam Kiss Feb 26 '10 at 8:55
3  
It's subjective, argumentative and should be, if not closed, commuity wiki. – Filip Ekberg Feb 26 '10 at 8:57
1  
@Adam I read it. I understand that you're not trying to start a flame war. Read what I wrote. I did not say you were. I am saying this is redundant and unnecessary. – Jimmy Cuadra Feb 26 '10 at 18:59
show 8 more comments

4 Answers

up vote 11 down vote accepted

It's all about performance and development speed. Of course, if you are a good programmer and design something that is really tailored to your needs, you might achieve better performance that if you had used a Javascript framework. But do you have the time to do it all by yourself?

My personal opinion is that Javascript is incredibly useful and overused, but that if you really need it, a framework is the way to go.

Now comes the choice of the framework. For what benchmarks are worth, you can find one at http://ejohn.org/files/142/ . It also depends on which plugins are available and what you intend to do with them. I started using jQuery because it seemed to be maintained and well featured, even though it wasn't the fastest at that moment. I do not regret it but I didn't test anything else since then.

share|improve this answer
well exactly my thoughs (for now), but claims about how jQuery is doing everything wrong in the "corest" core and evaluating browsers and stuff... got me confused – Adam Kiss Feb 26 '10 at 9:05
  • Does jQuery heavily rely on browser sniffing? Could be that potential problem in future? Why?

No - there is the $.browser method, but it's deprecated and isn't used in the core.

  • I found plenty JS-selector engines, are there any AJAX and FX libraries?

Loads. jQuery is often chosen because it does AJAX and animations well, and is easily extensible. jQuery doesn't use it's own selector engine, it uses Sizzle, an incredibly fast selector engine.

  • Is there any reason (besides browser sniffing and personal "hate" against John Resig) why jQuery is wrong?

No - it's quick, relatively small and easy to extend.

For me personally it's nice to know that as browsers include more stuff (classlist API for example) that jQuery will update to include it, meaning that my code runs as fast as possible all the time.

Read through the source if you are interested, http://code.jquery.com/jquery-1.4.3.js - you'll see that features are added based on the best case first, and gradually backported to legacy browsers - for example, a section of the parseJSON method from 1.4.3:

return window.JSON && window.JSON.parse ?
    window.JSON.parse( data ) :
    (new Function("return " + data))();

As you can see, if window.JSON exists, the browser uses the native JSON parser, if not, then it avoids using eval (because otherwise minfiers won't minify this bit) and sets up a function that returns the data. This idea of assuming modern techniques first, then degrading to older methods is used throughout meaning that new browsers get to use all the whizz bang features without sacrificing legacy compatibility.

share|improve this answer

Jquery like any other good JavaScript frameworks supplies you with functionality independent of browser platform wrapping all the intricacies, which you may not care about or don't want to care about.

I think using a framework is better instead of using pure JavaScript and doing all the stuff from scratch, unless you usage is very limited.

I definitely recommend JQuery!

Thanks

share|improve this answer
I already work with jQuery, I was more interested in arguments why it's better (putting "ease of use" aside) – Adam Kiss Feb 26 '10 at 9:09
Because of its elegance and continuous new features, at least I haven't seen any JavaScript framework that has this rapidly growing community of users and support. Thanks – Mahesh Velaga Feb 26 '10 at 10:52
2  
Jquery Elegance? lol – GAgnew May 5 '11 at 20:11
1  
@Greg: I didn't understand you comment. Did I use Elegance in the wrong context? – Mahesh Velaga May 6 '11 at 9:41

Jquery VS javascript, I am completely against the OP in this question. Comparison happens with two similar things, not in such case.

Jquery is Javascript. A javascript library to reduce vague coding, collection commonly used javascript functions which has proven to help in efficient and fast coding.

Javascript is the source, the actual scripts that browser responds to.

share|improve this answer
In my opinion, who wants to understand the question, understands it. The point stated here was, whether jQuery is worth of implementing, or whether a programmer should go with clean JavaScript. – Bunkai.Satori Sep 6 '12 at 20:11
@Bunkai.Satori, Which basically asks of jQuery vs Javascript type answer. – Starx Sep 7 '12 at 0:27
"vague coding"?:)) – Tiberiu-IonuČ› Stan Jun 2 at 0:34
@Tiberiu-IonuČ›Stan, Or many lines of codes for a simple action. – Starx Jun 2 at 1:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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