User:FatalError/Ajax (programming)

From Wikipedia, the free encyclopedia

Ajax (asynchronous JavaScript and XML), or AJAX, is a group of interrelated web development techniques used for creating interactive web applications. With Ajax, web applications can retrieve data from the server asynchronously in the background without interfering with the display and behavior of the existing page. Data is retrieved using the XMLHttpRequest object or through the use of Remote Scripting in browsers that do not support it. Despite the name, the use of JavaScript, XML, and asynchrony is not required.[1][2]

History[edit]

While the term "Ajax" was coined in 2005,[3] techniques for the asynchronous loading of content date back to 1996, when Internet Explorer introduced the IFrame element.[4] Microsoft's Remote Scripting, introduced in 1998, acted as a more elegant replacement for these techniques, with data being pulled in by a Java applet with which the client side could communicate using JavaScript. In 2002, Microsoft created the XMLHttpRequest object as an ActiveX control in Internet Explorer 5, and developers of Mozilla and Safari followed soon after with native versions of the object.[5][4] It did not become an official web standard until April 5, 2006, when the World Wide Web Consortium (W3C) released a specification for the object.[6]

Advantages[edit]

  • In many cases, the pages on a website consist of much content that is common between them. Using traditional methods, that content would have to be reloaded on every request. However, using Ajax, a web application can request only the content that needs to be updated, thus drastically reducing bandwidth usage.[7][8][9]
  • Because only sections of pages need to be reloaded, Ajax allows for much more responsive web applications,[10] giving users the feeling that changes are happening instantaneously.[11]
  • The use of Ajax can reduce connections to the server, since scripts and style sheets only have to be requested once.[11]

Disadvantages[edit]

  • Dynamically created pages do not register themselves with the browser's history engine, so clicking the browser's "back" button would not return the user to an earlier state of the Ajax-enabled page, but would instead return them to the last page visited before it.[9] Workarounds include the use of invisible IFrames to trigger changes in the browser's history.[11][9]
  • Dynamic web page updates also make it difficult for a user to bookmark a particular state of the application. Solutions to this problem exist, many of which use the URL fragment identifier (the portion of a URL after the '#') to keep track of, and allow users to return to, the application in a given state.[11][9]
  • Because most web crawlers do not execute JavaScript code, web applications should provide an alternative means of accessing the content that would normally be retrieved with Ajax, to allow search engines to index it.[12]
  • Any user whose browser does not support Ajax or JavaScript, or simply has JavaScript disabled, will not be able to use its functionality.[12] Similarly, devices such as mobile phones, PDAs, and screen readers may not have support for JavaScript or the XMLHttpRequest object.[1] Also, screen readers that are able to use Ajax may not properly read the dynamically generated content.[13]
  • The same origin policy prevents Ajax from being used across domains,[14] although the W3C has a draft that would enable this functionality.[15]

See also[edit]

References[edit]

  1. ^ a b Baekdal, Thomas (2005-02-20). "XMLHttpRequest Usability Guidelines". baekdal.com. Retrieved 2008-06-27.
  2. ^ Ullman, Chris. "What is Ajax?". wrox.com. Retrieved 2008-06-24.
  3. ^ Jesse James Garrett (2005-02-18). "Ajax: A New Approach to Web Applications". adaptivepath.com. Retrieved 2008-06-19.
  4. ^ a b Wei, Coach (2008-05-19). "A Brief History of AJAX". Real-World AJAX. AjaxWorld Magazine. Retrieved 2008-06-24. {{cite web}}: Unknown parameter |coauthors= ignored (|author= suggested) (help)
  5. ^ "Dynamic HTML and XML: The XMLHttpRequest Object". Apple Inc. Retrieved 2008-06-25.
  6. ^ "The XMLHttpRequest Object". World Wide Web Consortium. 2006-04-05. Retrieved 2008-06-25.
  7. ^ Merrill, Christopher (2006-01-15). "Performance Impacts of AJAX Development". Web Performance, Inc. Retrieved 2008-06-16.
  8. ^ "The Advantages of Using AJAX". lunarpages.com. Retrieved 2008-06-26.
  9. ^ a b c d "Advantages and Disadvantages of Ajax". Exforsys Inc. Retrieved 2008-06-26.
  10. ^ Wroblewski, Luke. "AJAX & Interface Design". LukeW.com. Retrieved 2008-06-26.
  11. ^ a b c d "Why use AJAX?". InterAKT. 2005-11-10. Retrieved 2008-06-26.
  12. ^ a b "The Disadvantages of Using AJAX". lunarpages.com. Retrieved 2008-06-26.
  13. ^ Edwards, James (2006-05-05). "AJAX and Screenreaders: When Can it Work?". sitepoint.com. Retrieved 2008-06-27.
  14. ^ Quian, Mark (2006-07-14). "Building an AJAX Application (1): It isn't called AJAX but Remote Scripting". coolshare.com. Retrieved 2008-06-27.
  15. ^ "Access Control for Cross-Site Requests". World Wide Web Consortium. Retrieved 2008-06-27.

External links[edit]

!Category:Ajax (programming) !Category:JavaScript programming language !Category:Web 2.0 neologisms !Category:Inter-process communication