Click here to Skip to main content
15,949,686 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
what is the difference between javascript and jquerry
Posted

JavaScript is a scripting language.
http://en.wikipedia.org/wiki/JavaScript

And JQuery is a Library/Framework built up using JavaScript.
http://en.wikipedia.org/wiki/JQuery

Updated -
Their are tons of links found on Google on this topic.
Google Search Result
 
Share this answer
 
v2
Comments
Abhinav S 20-Oct-11 8:03am    
Good links. 5.
RaisKazi 20-Oct-11 8:04am    
Thank you Abhinav.:)
 
Share this answer
 
JavaScript is a language.
Jquery is a framework built with JavaScript for helping you to use that language
 
Share this answer
 
Hi,

javascript is interpreter and Jquery is collection of javascript features

Jquery is simply javascript Library.

it developed for just reusability of code.

for e.g:

without JQuery we've to write below line for accessing element in document.

JavaScript
document.getElementByID("elementID").property


But with Jquery

we just write
JavaScript
$("#elementID").property


this is just example if you go for synchronous requests we've to write

almost 10 lines with Jquery.

If we use Jquery means its just in one line

JavaScript
$.get("pagename.aspx",{},function(data){});



I hope you understood What I said

All the Best
 
Share this answer
 
v2
Comments
Muralikrishna8811 20-Oct-11 8:49am    
thank u
kiran

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900