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 read and heard that jQuery is not a W3C standard but at the same time I couldn't find the reason why it is so. Any explanation with reasoning are appreciated.

EDIT: OK, may be I should reword/rephrase my original question. Actually, the question I had in my mind was -- Does jQuery follow W3C standards? but while posting it just got reworded.

share|improve this question
3  
jquery team !== w3c working group - and jQuery is "only" a library built over a standard language (ECMA-262) – Fabrizio Calderan Jul 3 '12 at 14:13
Based on the FAQ, I don't think this question belongs on SO. stackoverflow.com/faq – elevine Jul 3 '12 at 14:15
1  
Why would jQuery be a standard? jQuery is just a (rather popular) library. – SLaks Jul 3 '12 at 14:16
1  
I think this question would be better suited for the programmers.stackexchange.com site. Good question, but not something that is discussed on SO – davidisawesome Jul 3 '12 at 14:17
@elevine: FYI. Rephrased the question. – Gnanam Jul 4 '12 at 7:02
show 2 more comments

closed as off topic by elevine, Anthony Grist, Deestan, Mat, undefined Jul 3 '12 at 14:16

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

There are already W3 standards for selecting and manipulating elements, jQuery is just a library that facilitates that. In other words, it is possible to do everything jQuery can do with regular JavaScript, so there is no reason to make it any kind of standard.

As to the edited version "does jQuery follow W3C standards", the answer is no. It uses non-standard properties and methods like innerHTML, as well as some browser-specific properties. Though it does this in a way that is useful and creates an "abstraction layer" that helps developers access these properties easily without worrying as much about browser compatibility, jQuery still does go against certain standards.

share|improve this answer

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