Skip to content

ilinsky/xmlhttprequest

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 

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

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published