- 1
What's the difference between Java script and JQuery?
Web development
3 Antworten
+ 3
Correction to Mo Ilmi's answer.
JavaScript is a "scripting language" for web and jQuery is made using JavaScript to make writing of JavaScript code easier.
+ 2
JavaScript is programming language, jQuery is big library.
+ 2
JS is look like junk
JQuery is simple, easy and clean way to write ur JS code
And both are same
JQuery is a libarary of JS
Used to manipulate DOM and Events specially
Ex :-
JS code :-
var el = document.getElementById("Abhay");
el.innerHTML("He is Cool")
JQuery code :-
$("#Abhay").text("He is Cool")
Stay Home
Stay Happy