Difference between Ajax and Jquery-Ajax
ajax, jquery
Solution
AJAX
AJAX = Asynchronous JavaScript and XML.
AJAX is a technique for creating fast and dynamic web pages.
AJAX allows web pages to be updated asynchronously by exchanging small amounts of data with the server behind the scenes. This means that it is possible to update parts of a web page, without reloading the whole page.
Classic web pages, (which do not use AJAX) must reload the entire page if the content should change.
JQUERY
JQuery is a lightweight, "write less, do more", JavaScript library.
The purpose of jQuery is to make it much easier to use JavaScript on your website.
jQuery takes a lot of common tasks that require many lines of JavaScript code to accomplish, and wraps them into methods that you can call with a single line of code.
jQuery also simplifies a lot of the complicated things from JavaScript, like AJAX calls and DOM manipulation.
So you can code in Jquery very easily wherever you need a AJAX technique
Content from W3SCHOOLS
Problem
hi i am new to ajax and jquery. i found many tutorials about ajax and jquery. but what is the difference between Ajax and JQuery ajax? which should i learn? please answer. Thank you