Class: 'XHR'

'XHR'

new 'XHR'()

XMLHttpRequest (XHR)

This object normalizes the use of the XMLHttpRequest object across browsers.

Source:
Example
// Define a request url and a callback function
var options = 
{ 
    url:      'http://stadtwerk.org/',
    callback: function(response) { alert(response); } 
} 
    
// Make the XHR call
Core.XHR.call(options);              

Extends

Methods

<static> call()

Call
Source: