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.
Aborts an web.ie.XDomainRequest
.
xdr.abort();
See also: https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/abort
Method. Aborts an `web.ie.XDomainRequest`. `xdr.abort();` See also: `https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest/abort`
(onerror this)
Property.
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. 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.
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. 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.
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. 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.
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. 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.
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. 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.
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. 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.
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. 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.
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. 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.
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. 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.
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. 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.
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. 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.
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. 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.
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. 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.
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. 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