Javascript-Ajax-Q&A Flashcards
What is AJAX?
AJAX was an acronym for the technologies used in asynchronous requests like this
To update the page without having to refresh
What does the AJAX acronym stand for?
Asynchronous JavaScript And XML. Since then, technologies have moved on and the term Ajax is now used to
refer to a group of technologies that offer asynchronous ·functionality in the browser.
Which object is built into the browser for making HTTP requests in JavaScript?
XMLHttpRequest
What event is fired by XMLHttpRequest objects when they are finished loading the data from the server?
the load event occurs
Bonus Question: An XMLHttpRequest object has an addEventListener() method just like DOM elements. How is it possible that they both share this functionality?
Prototypes (EventTarget.)