InterviewSolution
Saved Bookmarks
| 1. |
What is the purpose of XMLHttpRequest?(a) Multiple loading(b) Load content by loading new document(c) Load content without loading new document(d) Repetitive loading |
|
Answer» Right option is (c) Load content without loading new document To elaborate: The XMLHttpRequest object can be used to request data from a web server. XMLHttpRequest makes it possible to load additional content from the Web without loading a new document, a core component of AJAX. |
|