AJAX
AJAX is an acronym which stands for Asynchronous Javascript And XML. It is a technique which allows you to access and return dynamically generated content without navigating to a new page. Essentially, a javascript function makes a request for an XML page and then another function retrieves the XML, parses out the data, and displays the required results.
AJAX Topics
Below is a list of topics describing the AJAX technique.
- AJAX Overview
- The XMLHttpRequest Object
- Using GET (coming soon)
- Using POST (coming soon)
- Navigating the resulting XML DOM (coming soon)