javascript-ajax Flashcards
1
Q
- What is AJAX
- What does AJAX acronym stand for
Which object is built into the browser for making HTTP requests in JavaScript?
A
- one of many techniques to load data into a website without having to refresh the entire page. (asynchronous processing model).
way of making asynchronous way of communicating with another computer
- Asynchronous JavScript and XML.
- XMLHttpRequest (this is a class)
2
Q
What event is fired by XMLHttpRequest objects when they are finished loading the data from the server?
A
Load
3
Q
Bonus Question: An XMLHttpRequest object has an addEventListener() method just like DOM elements. How is it possible that they both share this functionality?
A
Share prototype