wulizhong / xmlhttprequest

XMLHttpRequest.js - Standard-compliant cross-browser XMLHttpRequest object implementation

Home Page:http://www.ilinsky.com/articles/XMLHttpRequest/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Scope of implementation

  1. Deliver unobtrusive standard-compliant cross-browser implementation of the XMLHttpRequest 1.0
  2. Fix browsers quirks observed in their native XMLHttpRequest object implementations
  3. Enable transparent sniffing of XMLHttpRequest object activity

How To Use

<head>
    <!-- ... -->
    <script type="text/javascript" src="XMLHttpRequest.js"></script>
    <!-- ... -->
</head>

XMLHttpRequest 2 features

The library does not and will not add support for any features found in XMLHttpRequest 2 since it is not possible to provide complete fallback implementation in older Internet Explorer browser for which this library was primarily developed. If you use this library, I recommend starting adding conditional HTML comments to limit exposure of the library only to browsers where it is really needed.

<head>
    <!--[if lte IE 9]>
    <script type="text/javascript" src="XMLHttpRequest.js"></script>
    <![endif]-->
</head>

Links to online resources

  1. XMLHttpRequest object implementation explained
  2. XMLHttpRequest 1.0 specification

About

XMLHttpRequest.js - Standard-compliant cross-browser XMLHttpRequest object implementation

http://www.ilinsky.com/articles/XMLHttpRequest/

License:Other


Languages

Language:JavaScript 100.0%