AJAX-exempel

Mer exempel

En enkel AJAX-exempel
Skapa ett enkelt XMLHttpRequest och hämta data från en TXT-fil.
AJAX example with callback function
Create XMLHttpRequest with a callback function and retrieve data from a TXT file.

Example explanation

Request XML file

Load XML file via AJAX
Create XMLHttpRequest to retrieve data from an XML file.
Retrieve content of XML file
Create XMLHttpRequest to retrieve data from an XML file, and then display these data in an HTML table.

Example explanation

Retrieve server data using PHP and ASP

Retrieve content of PHP file
How a web page communicates with a web server when a user types characters in an input field.
Retrieve content of ASP file
How a web page communicates with a web server when a user types characters in an input field.

Example explanation

Retrieve database information

Retrieve content from the database
How a web page reads information from a database using AJAX.

Example explanation