Ajax Jquery and javascript | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Ajax Jquery and javascript

Somebody help me out. I do understand the theoretical difference among these languages but apparently their functionality is a bit a mystery. Couldn't they have kept improving one of them,just like we have HTML and html5 ?

14th Jul 2017, 11:13 PM
John Siele
John Siele - avatar
3 Answers
+ 5
AJAX = Asynchronous JavaScript And XML. AJAX is not a programming language. AJAX allows web pages to be updated asynchronously by exchanging data with a web server behind the scenes. This means that it is possible to update parts of a web page, without reloading the whole page. https://www.w3schools.com/xml/ajax_intro.asp jQuery is a JavaScript Library. jQuery greatly simplifies JavaScript programming. https://www.w3schools.com/jquery/ JavaScript is the programming language of HTML and the Web. It mostly renders dynamic content on the web.
15th Jul 2017, 12:18 AM
Benneth Yankey
Benneth Yankey - avatar
+ 1
Javascript has been around forever, and has been improved upon over the years. jQuery was something that someone else made that greatly simplified JS syntax and added easier functionality for things like AJAX. You can do Ajax by itself with vanilla JS, which is useful, or you can use the form of it that is built into jQuery. As you can see, it's much different than HTML, but they all play off one another so it's a good thing because the community is able to make things great instead of just one entity. Between all the above, I don't think I could ever go back to vanilla JS again. Between jQuery, AngularJS, and NodeJS, I would go nuts if I had to use vanilla. :D
14th Jul 2017, 11:19 PM
AgentSmith
+ 1
jQuery is a library, meaning that it simply runs a JavaScript code which makes a whole lot of built-in functions, which you can then use in your own code.
15th Jul 2017, 4:58 PM
James
James - avatar