AJAX Introduction Flashcards
Why is AJAX a developer’s dream?
It reads data from a web server after the page has loaded. It updates a web page without reloading the page. It sends data to a web server in the background.
What is AJAX?
A technique for accessing web servers from a web page.
What does AJAX stand for?
Asynchronous JavaScript and XML
T or F: AJAX is not a programming language.
True
AJAX uses the combination of what two things?
A browser built-in XMLHttpRequest object, and JavaScript and HTML DOM.
AJAX uses XMLHttpRequest object to do what?
to request data from a web server.
AJAX uses JavaScript and HTML to do what?
to display or use the data
AJAX allows web pages to be updated ________ by exchanging data with a web server. What does this do?
asynchronously. It updates part of a web page, without reloading the whole page.