typo
pull/87/merge
Nicholas Lee 7 years ago committed by Yangshun Tay
parent 75ebbaa033
commit b6e8283908

@ -879,7 +879,7 @@ This is a browser-reported string that allows the network protocol peers to iden
### Explain Ajax in as much detail as possible. ### Explain Ajax in as much detail as possible.
Ajax (asynchronous JavaScript and XML") is a set of web development techniques using many web technologies on the client side to create asynchronous web applications. With Ajax, web applications can send data to and retrieve from a server asynchronously (in the background) without interfering with the display and behavior of the existing page. By decoupling the data interchange layer from the presentation layer, Ajax allows for web pages, and by extension web applications, to change content dynamically without the need to reload the entire page. In practice, modern implementations commonly substitute JSON for XML due to the advantages of being native to JavaScript. Ajax (asynchronous JavaScript and XML) is a set of web development techniques using many web technologies on the client side to create asynchronous web applications. With Ajax, web applications can send data to and retrieve from a server asynchronously (in the background) without interfering with the display and behavior of the existing page. By decoupling the data interchange layer from the presentation layer, Ajax allows for web pages, and by extension web applications, to change content dynamically without the need to reload the entire page. In practice, modern implementations commonly substitute JSON for XML due to the advantages of being native to JavaScript.
The `XMLHttpRequest` API is frequently used for the asynchronous communication or these days, the `fetch` API. The `XMLHttpRequest` API is frequently used for the asynchronous communication or these days, the `fetch` API.

Loading…
Cancel
Save