views:

252

answers:

3

what is the difference between jquery and java script

+14  A: 

Javascript is a language. Jquery is a framework built with Javascript to help Javascript programmers who are doing common web tasks.

quixoto
+2  A: 

JavaScript is a scripting language. jQuery is a framework that uses the JavaScript language to write JavaScript code faster.

Please read some by visiting jquery.com and read the "about"

More info:

WmasterJ
+4  A: 

@Ben is correct. JavaScript is the language itself. While jQuery is a framework for helping you use that language.

Think of JavaScript like a foriegn language which you are learning, or even know. But if you goto a country where it is spoken, a guide can still help you along, making your journey easier. jQuery is one of many frameworks which provide help in areas that can be frustrating when writing plain JavaScript.

Also, JavaScript has nothing to do with Java, despite the name. :)

Other frameworks which you might want to look at are things like: Dojo http://www.dojotoolkit.org/ / Prototype http://www.prototypejs.org/ / Etc.

Hope this helps! :)

Spot