Overview


AJAX: "Asynchronous JavaScript + XML".

asynchronous - non blocking - they complete "later" via a callback or event. They do not block other operations.

In contrast, asynchronous operations block other operations and wait.

Note that we will also touch on Cross-Origin Resource Sharing (CORS).

Examples