Liking cljdoc? Tell your friends :D

web.ie.XDomainRequest

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.
raw docstring

abortcljs

(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`
sourceraw docstring

onerrorcljs

(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`
sourceraw docstring

onloadcljs

(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`
sourceraw docstring

onprogresscljs

(onprogress this)

Property.

[Non Standard] [Obsolute]

This method is called periodically as an event handler for progress on web.ie.XDomainRequests, 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`
sourceraw docstring

ontimeoutcljs

(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`
sourceraw docstring

opencljs

(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`
sourceraw docstring

response-textcljs

(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`
sourceraw docstring

sendcljs

(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`
sourceraw docstring

set-onerror!cljs

(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`
sourceraw docstring

set-onload!cljs

(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`
sourceraw docstring

set-onprogress!cljs

(set-onprogress! this val)

Property.

[Non Standard] [Obsolute]

This method is called periodically as an event handler for progress on web.ie.XDomainRequests, 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`
sourceraw docstring

set-ontimeout!cljs

(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`
sourceraw docstring

set-response-text!cljs

(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`
sourceraw docstring

set-timeout!cljs

(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`
sourceraw docstring

timeoutcljs

(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`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close