-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AJAX #1
Comments
AJAx ( Asynchronous JavaScript and XML ), while not a technology in itself, X in Ajax stands for XML, JSON is used more than XML nowadays because of its many advantages such as being lighter and a part of JavaScript. Both JSON and XML are used for packaging information in the Ajax model. the use of the XMLHttpRequest object to communicate with servers. It can send and receive information in various formats, including JSON, XML, HTML, and text files. AJAX’s most appealing characteristic is its "asynchronous" nature, which means it can communicate with the server, exchange data, and update the page without having to refresh the page. steps :
The keystone of AJAX is the XMLHttpRequest object : a Simple example...
Fetch API : The fetch() method of the WindowOrWorkerGlobalScope mixin starts the process of fetching a resource from the network, The promise resolves to the Response object representing the response to your request. a Simple example ...
|
Well done 👍🏼. |
The text was updated successfully, but these errors were encountered: