In the previous chapters, you learned to render DOM elements and to react to events from systems or users, but a front-end application feeds on asynchronous data from a server. This chapter aims to show you how to build an HTTP client in a frameworkless way.
A Bit of History: The Birth of AJAX
Before the late 1990s, a complete page reload was required for every user action that needed any kind of data from the server. For people approaching web development (or web in general), today we use what we ...