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

    Dec 16, 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 just part of a …

  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 application to …

  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 XML …

  5. 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 to update …

  6. How To Use XMLHttpRequest In Javascript - DEV Community

    Mar 5, 2025 · This guide will take you through what XMLHttpRequest is, show you a step-by-step process on how to use it, and offer some extra resources and FAQs to help clear up any confusion.

  7. AJAX XMLHttpRequest Object - GeeksforGeeks

    Jul 23, 2025 · XMLHttpRequest is an object that is used to send a request to the webserver for exchanging data or transferring and manipulating to it and from the server behind the scenes.

  8. 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.

  9. Mastering XMLHttpRequest in JavaScript: A Comprehensive Guide …

    Apr 10, 2024 · XMLHttpRequest (XHR) is a key component in achieving this asynchronous communication within web browsers. In this guide, we’ll delve into what XMLHttpRequest is, how it …

  10. AJAX The XMLHttpRequest Object - W3Schools

    The XMLHttpRequest object can be used to exchange data with a web server behind the scenes. This means that it is possible to update parts of a web page, without reloading the whole page.