Ajax (alsoAJAX/ˈeɪdʒæks/; short for "asynchronousJavaScript +XML"[1][2]) is a set ofweb development techniques that uses various web technologies on theclient-side to create asynchronousweb applications. With Ajax, web applications can send and retrieve data from aserver asynchronously (in the background) without interfering with the display and behaviour of the existing page. By decoupling thedata interchange 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 utilizeJSON instead of XML.
Ajax is not a technology, but rather a programming pattern.HTML andCSS 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-inXMLHttpRequest object is used to execute Ajax on webpages, allowing websites to load content onto the screen without refreshing the page. Ajax is not a new technology, nor is it a new language. Instead, it is existing technologies used in a new way.
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 madebandwidth a limiting factor in performance.
The functionality of the Windows XMLHTTPActiveX control in IE 5 was later implemented byMozilla Firefox,Safari,Opera,Google Chrome, and other browsers as the XMLHttpRequest JavaScript object.[7] Microsoft adopted the native XMLHttpRequest model as ofInternet Explorer 7. The ActiveX version is still supported in Internet Explorer and on "Internet Explorer mode" inMicrosoft Edge. The utility of these backgroundHTTP requests and asynchronous Web technologies remained fairly obscure until it started appearing in large scale online applications such as Outlook Web Access (2000)[8] andOddpost (2002).[9]
Google made a wide deployment of standards-compliant,cross browser Ajax withGmail (2004) andGoogle Maps (2005).[10] In October 2004Kayak.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 termAJAX was publicly used on 18 February 2005 byJesse James Garrett in an article titledAjax: A New Approach to Web Applications, based on techniques used on Google pages.[1]
On 5 April 2006, theWorld Wide Web Consortium (W3C) released the first draft specification for the XMLHttpRequest object in an attempt to create an officialWeb standard.[12]The latest draft of the XMLHttpRequest object was published on 6 October 2016,[13] and the XMLHttpRequest specification is now aliving standard.[14]
The conventional model for aWeb Application versus an application using Ajax
The termAjax 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:
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 (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, includingjQuery, include abstractions to assist in executing Ajax requests.
An example of a simple Ajax request using theGET method, written inJavaScript.
get-ajax-data.js:
// This is the client-side script.// Initialize the HTTP request.letxhr=newXMLHttpRequest();// define the requestxhr.open('GET','send-ajax-data.php');// Track the state changes of the request.xhr.onreadystatechange=function(){constDONE=4;// readyState 4 means the request is done.constOK=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.phpxhr.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 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]
Thefetch specification differs fromAjax in the following significant ways:
The Promise returned fromfetch()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 theok 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 thecredentials init option. (Since April 2018. The spec changed the default credentials policy tosame-origin. Firefox changed since 61.0b13.)
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]
^English, Paul (12 April 2006)."Kayak User Interface".Official Kayak.com Technoblog.Archived from the original on 23 May 2014. Retrieved22 May 2014.
^van Kesteren, Anne; Jackson, Dean (5 April 2006)."The XMLHttpRequest Object".W3.org. World Wide Web Consortium.Archived from the original on 16 May 2008. Retrieved25 June 2008.
^Kesteren, Anne; Aubourg, Julian; Song, Jungkee; Steen, Hallvord R. M."XMLHttpRequest Level 1".W3.org. W3C.Archived from the original on 13 July 2017. Retrieved19 February 2019.