September 2024
Intermediate to advanced
743 pages
27h 48m
English
Now that you understand how to dynamically modify web pages using the DOM API to update content, for example, an obvious question is how to load this data from a server without reloading the entire web page. The technique used for this step is called Ajax (which stands for Asynchronous JavaScript and XML). The idea is to use JavaScript to make HTTP requests to the server without completely reloading the web page itself.
First, recall how the communication between a client and a server works through HTTP. The client sends a request to the server, which then processes it and sends a corresponding response back to the client. For ...
Read now
Unlock full access