XDomainRequest is an implementation of HTTP access control (CORS) worked in Internet Explorer 8 and 9. It was removed in Internet 10 in favor of using XMLHttpRequest with proper CORS; if you targeting Internet Explorer 10 or later, or wish to support any browser, you need to use standard HTTP access control.
XDomainRequest is an implementation of HTTP access control (CORS) worked in Internet Explorer 8 and 9. It was removed in Internet 10 in favor of using XMLHttpRequest with proper CORS; if you targeting Internet Explorer 10 or later, or wish to support any browser, you need to use standard HTTP access control.
(abort this)
Method.
[Non Standard] [Obsolute]
Aborts an web.ie.XDomainRequest
.
xdr.abort();
See also: https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/abort
Method. [Non Standard] [Obsolute] Aborts an `web.ie.XDomainRequest`. `xdr.abort();` See also: `https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/abort`
(onerror this)
Property.
[Non Standard] [Obsolute]
An event handler which is called when an web.ie.XDomainRequest
an error.
xdr.onerror = funcRef;
See also: https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/onerror
Property. [Non Standard] [Obsolute] An event handler which is called when an `web.ie.XDomainRequest` an error. `xdr.onerror = funcRef;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/onerror`
(onload this)
Property.
[Non Standard] [Obsolute]
An event handler for when an web.ie.XDomainRequest
has finished
the response from the server. You can find the entire server
in the XDomainRequest.responseText
property.
xdr.onload = funcRef;
See also: https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/onload
Property. [Non Standard] [Obsolute] An event handler for when an `web.ie.XDomainRequest` has finished the response from the server. You can find the entire server in the `XDomainRequest.responseText` property. `xdr.onload = funcRef;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/onload`
(onprogress this)
Property.
[Non Standard] [Obsolute]
This method is called periodically as an event handler for progress
on web.ie.XDomainRequest
s, so that code can monitor progress
loading content.
xdr.onprogress = funcRef;
See also: https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/onprogress
Property. [Non Standard] [Obsolute] This method is called periodically as an event handler for progress on `web.ie.XDomainRequest`s, so that code can monitor progress loading content. `xdr.onprogress = funcRef;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/onprogress`
(ontimeout this)
Property.
[Non Standard] [Obsolute]
An event handler which is called when a pending web.ie.XDomainRequest
out.
xdr.ontimeout = funcRef;
See also: https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/ontimeout
Property. [Non Standard] [Obsolute] An event handler which is called when a pending `web.ie.XDomainRequest` out. `xdr.ontimeout = funcRef;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/ontimeout`
(open this method url)
Method.
[Non Standard] [Obsolute]
Opens an web.ie.XDomainRequest
which is configured to use a
method (GET/POST) and URL.
xdr.open(method, url);
See also: https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/open
Method. [Non Standard] [Obsolute] Opens an `web.ie.XDomainRequest` which is configured to use a method (GET/POST) and URL. `xdr.open(method, url);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/open`
(response-text this)
Property.
[Non Standard] [Obsolute]
Returns the response body of an web.ie.XDomainRequest
as a
`var response = xdr.responseText;
This sets response to contain the response body of the request, as a string.`
See also: https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/responseText
Property. [Non Standard] [Obsolute] Returns the response body of an `web.ie.XDomainRequest` as a `var response = xdr.responseText; This sets response to contain the response body of the request, as a string.` See also: `https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/responseText`
(send this data)
Method.
[Non Standard] [Obsolute]
Sends an web.ie.XDomainRequest
which has previously been opened
XDomainRequest.open()
.
xdr.send(data);
See also: https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/send
Method. [Non Standard] [Obsolute] Sends an `web.ie.XDomainRequest` which has previously been opened `XDomainRequest.open()`. `xdr.send(data);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/send`
(set-onerror! this val)
Property.
[Non Standard] [Obsolute]
An event handler which is called when an web.ie.XDomainRequest
an error.
xdr.onerror = funcRef;
See also: https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/onerror
Property. [Non Standard] [Obsolute] An event handler which is called when an `web.ie.XDomainRequest` an error. `xdr.onerror = funcRef;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/onerror`
(set-onload! this val)
Property.
[Non Standard] [Obsolute]
An event handler for when an web.ie.XDomainRequest
has finished
the response from the server. You can find the entire server
in the XDomainRequest.responseText
property.
xdr.onload = funcRef;
See also: https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/onload
Property. [Non Standard] [Obsolute] An event handler for when an `web.ie.XDomainRequest` has finished the response from the server. You can find the entire server in the `XDomainRequest.responseText` property. `xdr.onload = funcRef;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/onload`
(set-onprogress! this val)
Property.
[Non Standard] [Obsolute]
This method is called periodically as an event handler for progress
on web.ie.XDomainRequest
s, so that code can monitor progress
loading content.
xdr.onprogress = funcRef;
See also: https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/onprogress
Property. [Non Standard] [Obsolute] This method is called periodically as an event handler for progress on `web.ie.XDomainRequest`s, so that code can monitor progress loading content. `xdr.onprogress = funcRef;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/onprogress`
(set-ontimeout! this val)
Property.
[Non Standard] [Obsolute]
An event handler which is called when a pending web.ie.XDomainRequest
out.
xdr.ontimeout = funcRef;
See also: https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/ontimeout
Property. [Non Standard] [Obsolute] An event handler which is called when a pending `web.ie.XDomainRequest` out. `xdr.ontimeout = funcRef;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/ontimeout`
(set-response-text! this val)
Property.
[Non Standard] [Obsolute]
Returns the response body of an web.ie.XDomainRequest
as a
`var response = xdr.responseText;
This sets response to contain the response body of the request, as a string.`
See also: https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/responseText
Property. [Non Standard] [Obsolute] Returns the response body of an `web.ie.XDomainRequest` as a `var response = xdr.responseText; This sets response to contain the response body of the request, as a string.` See also: `https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/responseText`
(set-timeout! this val)
Property.
[Non Standard] [Obsolute]
Gets or sets the amount of time in milliseconds until an web.ie.XDomainRequest
out.
`xdr.timeout = milliseconds;
The default value is 0.`
See also: https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/timeout
Property. [Non Standard] [Obsolute] Gets or sets the amount of time in milliseconds until an `web.ie.XDomainRequest` out. `xdr.timeout = milliseconds; The default value is 0.` See also: `https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/timeout`
(timeout this)
Property.
[Non Standard] [Obsolute]
Gets or sets the amount of time in milliseconds until an web.ie.XDomainRequest
out.
`xdr.timeout = milliseconds;
The default value is 0.`
See also: https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/timeout
Property. [Non Standard] [Obsolute] Gets or sets the amount of time in milliseconds until an `web.ie.XDomainRequest` out. `xdr.timeout = milliseconds; The default value is 0.` See also: `https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/timeout`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close