new 'XHR'()
XMLHttpRequest (XHR)
This object normalizes the use of the XMLHttpRequest object across browsers.
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);