InterviewSolution
Saved Bookmarks
| 1. |
What is an XMLHttpRequest object in AJAX? |
|
Answer» The XMLHttpRequest (XHR) object is the key to AJAX. It is heavily used in AJAX programming to interact with servers. XMLHttpRequest can be used to retrieve any TYPE of data, not just XML. It is supported by all modern browsers. It can be considered as an API that can be used by JavaScript, VBScript, and other WEB SCRIPTING languages to transfer and manipulate data to and from a server using HTTP. |
|