# Ajax (programming)

> Mediated Wiki article. Canonical URL: https://mediated.wiki/source/Ajax_(programming)
> Markdown URL: https://mediated.wiki/source/Ajax_(programming).md
> Source: https://en.wikipedia.org/wiki/Ajax_(programming)
> Source revision: 1351164060
> License: Creative Commons Attribution-ShareAlike 4.0 International (https://creativecommons.org/licenses/by-sa/4.0/)

Group of interrelated Web development techniques

"AJAX" redirects here. For other uses, see [Ajax (disambiguation)](/source/Ajax_(disambiguation)).

Asynchronous JavaScript and XML First appeared March 1999 Filename extensions .js File formats JavaScript Influenced by JavaScript + XML

The ***[Asynchronous](/source/Asynchronous_I%2FO) [JavaScript](/source/JavaScript) and [XML](/source/XML)***[1][2], usually referred to as **Ajax** (or **AJAX**, [/ˈeɪdʒæks/](https://en.wikipedia.org/wiki/Help:IPA/English)) is a set of [web development](/source/Web_development) techniques that uses various web technologies on the [client-side](/source/Client-side) to create asynchronous [web applications](/source/Web_application). With Ajax, web applications can send and retrieve data from a [server](/source/Web_server) asynchronously (in the background) without interfering with the display and behaviour of the existing page. By decoupling the [data interchange](/source/Data_exchange) layer from the presentation layer, Ajax allows web pages and, by extension, web applications, to change content dynamically without the need to reload the entire page.[3] In practice, modern implementations commonly utilize [JSON](/source/JSON) instead of XML.

Ajax is not a technology, but rather a programming pattern. [HTML](/source/Hypertext_Markup_Language) and [CSS](/source/Cascading_Style_Sheets) can be used in combination to mark up and style information. The webpage can be modified by JavaScript to dynamically display (and allow the user to interact with) the new information. The built-in [XMLHttpRequest](/source/XMLHttpRequest) object is used to execute Ajax on webpages, allowing websites to load content onto the screen without refreshing the page.

## History

In the early-to-mid 1990s, most Websites were based on complete HTML pages. Each user action required a complete new page to be loaded from the server. This process was inefficient, as reflected by the user experience: all page content disappeared, then the new page appeared. Each time the browser reloaded a page because of a partial change, all the content had to be re-sent, even though only some of the information had changed. This placed additional load on the server and made [bandwidth](/source/Bandwidth_(computing)) a limiting factor in performance.

The foundations of AJAX originate back in 1996 with the introduction of JavaScript 1. Developers quickly discovered that any HTML element which accepted a "src" attribute could be used to fetch remote data. By changing the src of a hidden [frame](/source/HTML_element#Frames), a developer could fetch remote data, process or display it without a page refresh. The remote data could be a string, JavaScript code, XML or a partial HTML page generated on the server. The same could be done with <img> and <embed> tags, but many developers were alarmed at the concept of an executable [GIF](/source/GIF) and preferred to use the hidden <iframe>. This technique was used for both [Netscape Navigator](/source/Netscape_Navigator) and [Internet Explorer](/source/Internet_Explorer), the two main browsers at the time, until developers discovered the XMLHTTP server object (MSXML 1.0) was included in Internet Explorer 4. Browser detection was then used to either implement the hidden <iframe> in Netscape or use the XMLHTTP (MSXML 1.0) object in IE 4.[*[This paragraph needs citation(s)](https://en.wikipedia.org/wiki/Wikipedia:Citation_needed)*]

In 1996, the [iframe](/source/HTML_element#Frames) tag was introduced by [Internet Explorer](/source/Internet_Explorer); like the [object](/source/HTML_element#Images_and_objects) element,[*[citation needed](https://en.wikipedia.org/wiki/Wikipedia:Citation_needed)*] it can load a part of the web page asynchronously. In 1998, the Microsoft [Outlook Web Access](/source/Outlook_Web_Access) team developed the concept behind the [XMLHttpRequest](/source/XMLHttpRequest) scripting object.[4] It appeared as XMLHTTP in the second version of the [MSXML](/source/MSXML) library,[4][5] which shipped with [Internet Explorer 5.0](/source/Internet_Explorer_5.0) in March 1999.[6]

The functionality of the Windows XMLHTTP [ActiveX](/source/ActiveX) control in IE 5 was later implemented by [Mozilla Firefox](/source/Firefox), [Safari](/source/Safari_(web_browser)), [Opera](/source/Opera_(web_browser)), [Google Chrome](/source/Google_Chrome), and other browsers as the XMLHttpRequest JavaScript object.[7] Microsoft adopted the native XMLHttpRequest model as of [Internet Explorer 7](/source/Internet_Explorer_7). Support for the ActiveX version remained in Internet Explorer and on "Internet Explorer mode" in [Microsoft Edge](/source/Microsoft_Edge). The utility of these background [HTTP](/source/HTTP) requests and asynchronous Web technologies remained fairly obscure until it started appearing in large scale online applications such as Outlook Web Access (2000)[8] and [Oddpost](/source/Oddpost) (2002).[9]

[Google](/source/Google) made a wide deployment of standards-compliant, [cross browser](/source/Cross_browser) Ajax with [Gmail](/source/Gmail) (2004) and [Google Maps](/source/Google_Maps) (2005).[10] In October 2004 [Kayak.com](/source/Kayak.com)'s public beta release was among the first large-scale e-commerce uses of what their developers at that time called "the xml http thing".[11] This increased interest in Ajax among web program developers.

The term *AJAX* was publicly used on 18 February 2005 by [Jesse James Garrett](/source/Jesse_James_Garrett) in an article titled *Ajax: A New Approach to Web Applications*, based on techniques used on Google pages.[1]

On 5 April 2006, the [World Wide Web Consortium](/source/World_Wide_Web_Consortium) (W3C) released the first draft specification for the XMLHttpRequest object in an attempt to create an official [Web standard](/source/Web_standard).[12] The latest draft of the XMLHttpRequest object was published on 6 October 2016,[13] and the XMLHttpRequest specification is now a [living standard](/source/Living_document).[14]

## Technologies

The conventional model for a [Web Application](/source/Web_Application) versus an application using Ajax

The term *Ajax* has come to represent a broad group of Web technologies that can be used to implement a Web application that communicates with a server in the background, without interfering with the current state of the page. In the article that coined the term Ajax,[1][3] Jesse James Garrett explained that the following technologies are incorporated:

- [HTML](/source/HTML) (or [XHTML](/source/XHTML)) and [CSS](/source/CSS) for presentation

- The [Document Object Model](/source/Document_Object_Model) (DOM) for dynamic display of and interaction with data

- [JSON](/source/JSON) or [XML](/source/XML) for the interchange of data, and [XSLT](/source/XSLT) for XML manipulation

- The [XMLHttpRequest](/source/XMLHttpRequest) object for asynchronous communication

- [JavaScript](/source/JavaScript) to bring these technologies together

Since then, however, there have been a number of developments in the technologies used in an Ajax application, and in the definition of the term Ajax itself. XML is no longer required for data interchange and, therefore, XSLT is no longer required for the manipulation of data. [JavaScript Object Notation](/source/JSON) (JSON) is often used as an alternative format for data interchange,[15] although other formats such as preformatted HTML or plain text can also be used.[16] A variety of popular JavaScript libraries, including [jQuery](/source/JQuery), include abstractions to assist in executing Ajax requests.

## Examples

### JavaScript example

An example of a simple Ajax request using the [GET](/source/GET_(HTTP)) method, written in [JavaScript](/source/JavaScript).

get-ajax-data.js:

// This is the client-side script.

// Initialize the HTTP request.
let xhr = new XMLHttpRequest();
// define the request
xhr.open('GET', 'send-ajax-data.php');

// Track the state changes of the request.
xhr.onreadystatechange = function ()
{
	const DONE = 4; // readyState 4 means the request is done.
	const OK = 200; // status 200 is a successful return.
	if (xhr.readyState === DONE)
	{
		if (xhr.status === OK)
		{
			console.log(xhr.responseText); // 'This is the output.'
		}
		else
		{
			console.log('Error: ' + xhr.status); // An error occurred during the request.
		}
	}
};

// Send the request to send-ajax-data.php
xhr.send(null);

send-ajax-data.php:

<?php
// This is the server-side script.

// Set the content type.
header('Content-Type: text/plain');

// Send the data back.
echo "This is the output.";
?>

### Fetch example

Fetch is a native JavaScript API.[17] According to Google Developers Documentation, "Fetch makes it easier to make web requests and handle responses than with the older XMLHttpRequest."[18]

fetch('send-ajax-data.php')
    .then(data => console.log(data))
    .catch (error => console.log('Error:' + error));

#### ES7 async/await example

async function doAjax1()
{
    try
    {
        const res = await fetch('send-ajax-data.php');
        const data = await res.text();
        console.log(data);
    }
    catch (error)
    {
        console.log('Error:' + error);
    }
}

doAjax1();

Fetch relies on JavaScript [promises](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise).

The fetch specification differs from Ajax in the following significant ways:

- The Promise returned from fetch() **won't reject on HTTP error status** even if the response is an HTTP 404 or 500. Instead, as soon as the server responds with headers, the Promise will resolve normally (with the ok property of the response set to false if the response isn't in the range 200–299), and it will only reject on network failure or if anything prevented the request from completing.

- fetch() **won't send cross-origin cookies** unless you set the *credentials* init option. (Since April 2018. The spec changed the default credentials policy to same-origin. Firefox changed since 61.0b13.)

## Benefits

This section needs more citations. Please help improve this article by adding citations to reliable sources in this section. Unsourced material may be challenged and removed. (November 2024) (Learn how and when to remove this message)

Ajax offers several benefits that can significantly enhance web application performance and user experience. By reducing server traffic and improving speed, Ajax plays a crucial role in modern web development. One key advantage of Ajax is its capacity to render web applications without requiring data retrieval, resulting in reduced server traffic. This optimization minimizes response times on both the server and client sides, eliminating the need for users to endure loading screens.[19]

Furthermore, Ajax facilitates asynchronous processing by simplifying the utilization of XmlHttpRequest, which enables efficient handling of requests for asynchronous data retrieval. Additionally, the dynamic loading of content enhances the application's performance significantly.[20]

Besides, Ajax enjoys broad support across all major web browsers, including Microsoft Internet Explorer versions 5 and above, Mozilla Firefox versions 1.0 and beyond, Opera versions 7.6 and above, and Apple Safari versions 1.2 and higher.[21]

## See also

- [ActionScript](/source/ActionScript)

- [Comet (programming)](/source/Comet_(programming)) (also known as Reverse Ajax)

- [Google Instant](/source/Google_Instant)

- [HTTP/2](/source/HTTP%2F2)

- [List of Ajax frameworks](/source/List_of_Ajax_frameworks)

- [Node.js](/source/Node.js)

- [Remote scripting](/source/Remote_scripting)

- [Rich web application](/source/Rich_web_application)

- [WebSocket](/source/WebSocket)

- [HTML5](/source/HTML5)

- [Web framework](/source/Web_framework)

- [JavaScript library](/source/JavaScript_library)

## References

1. ^ [***a***](#cite_ref-garrett_1-0) [***b***](#cite_ref-garrett_1-1) [***c***](#cite_ref-garrett_1-2) Jesse James Garrett (18 February 2005). ["Ajax: A New Approach to Web Applications"](http://adaptivepath.org/ideas/ajax-new-approach-web-applications/). AdaptivePath.com. [Archived](https://web.archive.org/web/20150910072359/http://adaptivepath.org/ideas/ajax-new-approach-web-applications/) from the original on 10 September 2015. Retrieved 19 June 2008.

1. **[^](#cite_ref-2)** ["Ajax - Web developer guides"](https://developer.mozilla.org/en-US/docs/Web/Guide/AJAX). *[MDN Web Docs](/source/MDN_Web_Docs)*. [Archived](https://web.archive.org/web/20180228161512/https://developer.mozilla.org/en-US/docs/Web/Guide/AJAX) from the original on 28 February 2018. Retrieved 27 February 2018.

1. ^ [***a***](#cite_ref-wrox_3-0) [***b***](#cite_ref-wrox_3-1) Ullman, Chris (March 2007). [*Beginning Ajax*](http://www.wrox.com/WileyCDA/Section/id-303217.html). wrox. [ISBN](/source/ISBN_(identifier)) [978-0-470-10675-4](https://en.wikipedia.org/wiki/Special:BookSources/978-0-470-10675-4). [Archived](https://web.archive.org/web/20080705101852/http://www.wrox.com/WileyCDA/Section/id-303217.html) from the original on 5 July 2008. Retrieved 24 June 2008.

1. ^ [***a***](#cite_ref-ALEXHOPMANN_4-0) [***b***](#cite_ref-ALEXHOPMANN_4-1) ["Article on the history of XMLHTTP by an original developer"](https://web.archive.org/web/20070623125327/http://www.alexhopmann.com/xmlhttp.htm). Alexhopmann.com. 31 January 2007. Archived from [the original](http://www.alexhopmann.com/xmlhttp.htm) on 23 June 2007. Retrieved 14 July 2009.

1. **[^](#cite_ref-MSDN1_5-0)** ["Specification of the IXMLHTTPRequest interface from the Microsoft Developer Network"](http://msdn.microsoft.com/en-us/library/ms759148(VS.85).aspx). Msdn.microsoft.com. [Archived](https://web.archive.org/web/20160526164820/https://msdn.microsoft.com/en-us/library/ms759148(VS.85).aspx) from the original on 26 May 2016. Retrieved 14 July 2009.

1. **[^](#cite_ref-Dutta_6-0)** Dutta, Sunava (23 January 2006). ["Native XMLHTTPRequest object"](http://blogs.msdn.com/ie/archive/2006/01/23/516393.aspx). *IEBlog*. Microsoft. [Archived](https://web.archive.org/web/20100306164701/http://blogs.msdn.com/ie/archive/2006/01/23/516393.aspx) from the original on 6 March 2010. Retrieved 30 November 2006.

1. **[^](#cite_ref-apple_7-0)** ["Dynamic HTML and XML: The XMLHttpRequest Object"](https://developer.apple.com/internet/webcontent/xmlhttpreq.html). Apple Inc. [Archived](https://web.archive.org/web/20080509103519/http://developer.apple.com/internet/webcontent/xmlhttpreq.html) from the original on 9 May 2008. Retrieved 25 June 2008.

1. **[^](#cite_ref-8)** Hopmann, Alex. ["Story of XMLHTTP"](https://web.archive.org/web/20100330150027/http://www.alexhopmann.com/story-of-xmlhttp/). *Alex Hopmann’s Blog*. Archived from [the original](http://www.alexhopmann.com/story-of-xmlhttp/) on 30 March 2010. Retrieved 17 May 2010.

1. **[^](#cite_ref-9)** Tynan, Dan (1 October 2007). ["The 16 Greatest Moments in Web History"](https://www.entrepreneur.com/business-news/the-16-greatest-moments-in-web-history/185338). *Entrepreneur*.

1. **[^](#cite_ref-xhr-history_10-0)** ["A Brief History of Ajax"](http://www.aaronsw.com/weblog/ajaxhistory). Aaron Swartz. 22 December 2005. [Archived](https://web.archive.org/web/20100603063722/http://www.aaronsw.com/weblog/ajaxhistory) from the original on 3 June 2010. Retrieved 4 August 2009.

1. **[^](#cite_ref-11)** English, Paul (12 April 2006). ["Kayak User Interface"](http://kayaklabs.blogspot.com/2006/04/kayak-user-interface.html). *Official Kayak.com Technoblog*. [Archived](https://web.archive.org/web/20140523000633/http://kayaklabs.blogspot.com/2006/04/kayak-user-interface.html) from the original on 23 May 2014. Retrieved 22 May 2014.

1. **[^](#cite_ref-xhr-standard_12-0)** van Kesteren, Anne; Jackson, Dean (5 April 2006). ["The XMLHttpRequest Object"](http://www.w3.org/TR/2006/WD-XMLHttpRequest-20060405/). *W3.org*. World Wide Web Consortium. [Archived](https://web.archive.org/web/20080516060525/http://www.w3.org/TR/2006/WD-XMLHttpRequest-20060405/) from the original on 16 May 2008. Retrieved 25 June 2008.

1. **[^](#cite_ref-13)** Kesteren, Anne; Aubourg, Julian; Song, Jungkee; Steen, Hallvord R. M. ["XMLHttpRequest Level 1"](https://www.w3.org/TR/2016/NOTE-XMLHttpRequest-20161006/). *W3.org*. W3C. [Archived](https://web.archive.org/web/20170713225915/https://www.w3.org/TR/2016/NOTE-XMLHttpRequest-20161006/) from the original on 13 July 2017. Retrieved 19 February 2019.

1. **[^](#cite_ref-14)** ["XMLHttpRequest Standard"](https://xhr.spec.whatwg.org/). *xhr.spec.whatwg.org*. Retrieved 21 April 2020.

1. **[^](#cite_ref-tapestry_15-0)** ["JavaScript Object Notation"](https://tapestry.apache.org/tapestry4.1/ajax/json.html). Apache.org. [Archived](https://web.archive.org/web/20080616113121/http://tapestry.apache.org/tapestry4.1/ajax/json.html) from the original on 16 June 2008. Retrieved 4 July 2008.

1. **[^](#cite_ref-devx-json_16-0)** ["Speed Up Your Ajax-based Apps with JSON"](https://web.archive.org/web/20080704134131/http://www.devx.com/Webdev/Article/32651). DevX.com. Archived from [the original](http://www.devx.com/Webdev/Article/32651) on 4 July 2008. Retrieved 4 July 2008.

1. **[^](#cite_ref-17)** ["Fetch API - Web APIs"](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API#Browser_compatibility). *MDN*. [Archived](https://web.archive.org/web/20190529085752/https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API#Browser_compatibility) from the original on 29 May 2019. Retrieved 30 May 2019.

1. **[^](#cite_ref-18)** ["Working with the Fetch API"](https://web.archive.org/web/20180930210307/https://developers.google.com/web/ilt/pwa/working-with-the-fetch-api). *[Google Developers](/source/Google_Developers)*. Archived from [the original](https://developers.google.com/web/ilt/pwa/working-with-the-fetch-api) on 30 September 2018. Retrieved 6 June 2025.

1. **[^](#cite_ref-reduce-traffic_19-0)** ["What is AJAX? Advantages & Disadvantages of Ajax?"](https://web.archive.org/web/20231006202615/https://www.mageplaza.com/blog/advantages-and-disadvantages-of-ajax.html). magaplaza. Archived from [the original](https://www.mageplaza.com/blog/advantages-and-disadvantages-of-ajax.html) on 6 October 2023. Retrieved 6 October 2023.

1. **[^](#cite_ref-asynchronous_20-0)** ["What is AJAX? Advantages & Disadvantages of AjaxAdvantages And Disadvantages Of AJAX – You Know About Them"](https://web.archive.org/web/20231006203258/https://blog.potenzaglobalsolutions.com/ajax-advantages-and-disadvantages/). POTENZA. Archived from [the original](https://blog.potenzaglobalsolutions.com/ajax-advantages-and-disadvantages/) on 6 October 2023. Retrieved 6 October 2023.

1. **[^](#cite_ref-support-browser_21-0)** ["Top 5+ Advantages and Disadvantages of AJAX"](https://web.archive.org/web/20231006203950/https://yovak.com/advantages-and-disadvantages-of-ajax/). POTENZA. 16 January 2022. Archived from [the original](https://yovak.com/advantages-and-disadvantages-of-ajax/) on 6 October 2023. Retrieved 6 October 2023.

## Further reading

Wikimedia Commons has media related to [AJAX (programming)](https://commons.wikimedia.org/wiki/Category:AJAX_(programming)).

Wikibooks has a book on the topic of: ***[AJAX](https://en.wikibooks.org/wiki/AJAX)***

- [Garrett, Jesse James](/source/Jesse_James_Garrett) (18 February 2005). [*Ajax: A New Approach to Web Applications*](https://courses.cs.washington.edu/courses/cse490h/07sp/readings/ajax_adaptive_path.pdf) (PDF). Retrieved 28 June 2025. — Article that coined the Ajax term and Q&A

v t e Web interfaces Server-side Protocols HTTP v2 v3 Encryption WebDAV CGI SCGI FCGI AJP WSRP WebSocket Server APIs C NSAPI C ASAPI C ISAPI COM ASP Jakarta Servlet container CLI OWIN ASP.NET Handler Python WSGI Python ASGI Ruby Rack JavaScript JSGI Perl PSGI Portlet container Apache modules mod_include mod_jk mod_lisp mod_mono mod_parrot mod_perl mod_php mod_proxy mod_python mod_wsgi mod_ruby Phusion Passenger Topics Web service vs. Web resource WOA vs. ROA Open API Webhook Application server comparison Scripting Client-side Browser APIs C NPAPI LiveConnect XPConnect C NPRuntime C PPAPI NaCl ActiveX BHO XBAP Web APIs WHATWG Audio Canvas DOM SSE Video WebSockets Web messaging Web storage Web worker XMLHttpRequest W3C DOM events EME File Geolocation IndexedDB MSE SVG WebAssembly WebAuthn WebGPU WebRTC WebXR Khronos WebCL WebGL Others Gears Web SQL Database (formerly W3C) WebUSB Topics Ajax and Remote scripting vs. DHTML Browser extension Cross-site scripting and CORS Hydration Mashup Persistent data Web IDL Scripting Related topics Frontend and backend Microservices REST GraphQL Push technology Solution stack Web page Static Dynamic Web standards Web API security Web application Rich Single-page Progressive Web framework

v t e JavaScript Code analysis ESLint JSHint JSLint Subsets,* supersets JS++ Source* TypeScript (ArkTS) Transpilers AtScript Babel ClojureScript CoffeeScript Dart Elm Emscripten Google Closure Compiler Google Web Toolkit Haxe LiveScript Morfik Nim Opa PureScript ReScript V (Vlang) WebSharper Concepts JavaScript library JavaScript syntax Debuggers Chrome DevTools Firefox Inspector (formerly Firebug) Komodo IDE Safari Web Inspector Documentation generators JSDoc Editors (comparison) Ace Cloud9 IDE Atom CodeMirror Brackets Light Table PhpStorm Orion Visual Studio Visual Studio Express Visual Studio Code Visual Studio Team Services Vim Engines List of JavaScript engines Frameworks Comparison of JavaScript frameworks List of JavaScript libraries Related technologies Ajax AssemblyScript asm.js CSS DOM HTML HTML5 JSON WebAssembly WebAuthn Package managers npm pnpm yarn Bun Module bundlers Bun esbuild Vite Webpack Server-side Active Server Pages Bun CommonJS Deno JSGI Node.js Unit testing frameworks (list) Jasmine Mocha QUnit People Douglas Crockford Ryan Dahl Brendan Eich John Resig Jesse James Garrett Outline Index Wikibook

Authority control databases International GND FAST National United States France BnF data Czech Republic Spain Israel Other IdRef Yale LUX

---
Adapted from the Wikipedia article [Ajax (programming)](https://en.wikipedia.org/wiki/Ajax_(programming)) by Wikipedia contributors ([contributor history](https://en.wikipedia.org/wiki/Ajax_(programming)?action=history)). Available under [Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/). Changes may have been made.
