About 103,000 results
Open links in new tab
  1. XMLHttpRequest - Web APIs | MDN

    Aug 26, 2025 · XMLHttpRequest (XHR) objects are used to interact with servers. You can retrieve data from a URL without having to do a full page refresh. This enables a Web page to update …

  2. XML HttpRequest - W3Schools

    All modern browsers have a built-in XMLHttpRequest object to request data from a server.

  3. XMLHttpRequest - Wikipedia

    XMLHttpRequest (XHR) is an API in the form of a JavaScript object whose methods transmit HTTP requests from a web browser to a web server. [1] The methods allow a browser-based …

  4. XMLHttpRequest - The Modern JavaScript Tutorial

    May 14, 2022 · XMLHttpRequest is a built-in browser object that allows to make HTTP requests in JavaScript. Despite having the word “XML” in its name, it can operate on any data, not only in …

  5. What are the properties of XMLHttpRequest ? - GeeksforGeeks

    Jul 23, 2025 · XMLHTTPRequest object is an API that is used for fetching data from the server. XMLHTTPRequest is basically used in Ajax programming. It retrieves any type of data such as …

  6. Using XMLHttpRequest - Web APIs | MDN

    Oct 30, 2025 · In this guide, we'll take a look at how to use XMLHttpRequest to issue HTTP requests in order to exchange data between the website and a server.

  7. XMLHttpRequest - W3docs

    XMLHttpRequest is a JavaScript object that provides the ability to send HTTP or HTTPS requests to a web server and load the server response data back into the script. This makes it possible …

  8. XML DOM - HttpRequest object - W3Schools

    All modern browsers have a built-in XMLHttpRequest object to request data from a server. All major browsers have a built-in XML parser to access and manipulate XML.

  9. Sending a Request With XMLHttpRequest | Web API Cookbook

    Sending a Request With XMLHttpRequest The XMLHttpRequest API is an event-based API used to send asynchronous HTTP requests. Despite its name, it is most commonly used to request …

  10. XMLHttpRequest API - Web APIs - MDN

    Aug 26, 2025 · The XMLHttpRequest API enables web apps to make HTTP requests to web servers and receive the responses programmatically using JavaScript. This in turn enables a …