tags:

views:

192

answers:

3

I know j in jQuery stands for JavaScript but what about query in jQuery ? What does that stand for ?

+2  A: 

I presume it has to do with the fact that it's often used to query the DOM, via selectors and so forth.

RenderIn
+6  A: 

http://en.wikipedia.org/wiki/Query

jQuery is -- at it's root -- about finding dom objects (using selectors) and manipulating them. You're querying the DOM for elements.

Typeoneerror
the question is:... the j is for John (John Resig, the founder of the script) ?or j as in "Javascript" ?
pixeline
Link should be http://en.wikipedia.org/wiki/jQuery
Obalix
@pixeline: Probably both!
z-boss
@Obalix Actually, he's really asking for a definition of query in general, so I thought that was more appropriate.
Typeoneerror
+3  A: 

John Resig's reply to someone claiming the name "JQuery" for a project already:

I was, originally, going to use JSelect, but all the domain names were taken already. I then did a search before I decided to call the project jQuery, saw your project, and also saw that it hadn't been updated since "October 26, 2004: JQuery 3.1.3". So, I assumed it was defunct.

See http://ejohn.org/blog/barcampnyc-wrap-up/#comment-1927

Roatin Marth