Liking cljdoc? Tell your friends :D

web.dom.HTMLObjectElement

The HTMLObjectElement interface provides special properties and (beyond those on the web.dom.HTMLElement interface it also available to it by inheritance) for manipulating the layout and of <object> element, representing external resources.

The HTMLObjectElement interface provides special properties and
(beyond those on the `web.dom.HTMLElement` interface it also
available to it by inheritance) for manipulating the layout and
of `<object>` element, representing external resources.
raw docstring

aligncljs

(align this)

Property.

Is a DOMString representing an enumerated property indicating of the element's contents with respect to the surrounding context. possible values are "left", "right", "justify", and "center".

Property.

Is a DOMString representing an enumerated property indicating
of the element's contents with respect to the surrounding context.
possible values are "left", "right", "justify", and "center".
sourceraw docstring

archivecljs

(archive this)

Property.

Is a DOMString that reflects the archive HTML attribute, containing list of archives for resources for this object.

Property.

Is a DOMString that reflects the archive HTML attribute, containing
list of archives for resources for this object.
sourceraw docstring

bordercljs

(border this)

Property.

Is a DOMString that reflects the border HTML attribute, specifying width of a border around the object.

Property.

Is a DOMString that reflects the border HTML attribute, specifying
width of a border around the object.
sourceraw docstring

check-validitycljs

(check-validity this)

Method.

The checkValidity() method of the web.dom.HTMLObjectElement returns a js.Boolean that always is true, because object objects never candidates for constraint validation.

var Boolean = HTMLObjectElement.checkValidity();

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/checkValidity

Method.

The checkValidity() method of the `web.dom.HTMLObjectElement`
returns a `js.Boolean` that always is true, because object objects
never candidates for constraint validation.

`var Boolean = HTMLObjectElement.checkValidity();`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/checkValidity`
sourceraw docstring

codecljs

(code this)

Property.

Is a DOMString representing the name of an applet class file, either the applet's subclass, or the path to get to the class, the class file itself.

Property.

Is a DOMString representing the name of an applet class file,
either the applet's subclass, or the path to get to the class,
the class file itself.
sourceraw docstring

code-basecljs

(code-base this)

Property.

Is a DOMString that reflects the codebase HTML attribute, specifying base path to use to resolve relative URIs.

Property.

Is a DOMString that reflects the codebase HTML attribute, specifying
base path to use to resolve relative URIs.
sourceraw docstring

code-typecljs

(code-type this)

Property.

Is a DOMString that reflects the codetype HTML attribute, specifying content type of the data.

Property.

Is a DOMString that reflects the codetype HTML attribute, specifying
content type of the data.
sourceraw docstring

content-documentcljs

(content-document this)

Property.

[Read Only]

The contentDocument read-only property of the web.dom.HTMLObjectElement Returns a web.Document representing the active document of object element's nested browsing context, if any; otherwise null.

var document = HTMLObjectElement.contentDocument;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/contentDocument

Property.

[Read Only]

The contentDocument read-only property of the `web.dom.HTMLObjectElement`
Returns a `web.Document` representing the active document of
object element's nested browsing context, if any; otherwise null.

`var document = HTMLObjectElement.contentDocument;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/contentDocument`
sourceraw docstring

content-windowcljs

(content-window this)

Property.

[Read Only]

The contentWindow read-only property of the web.dom.HTMLObjectElement returns a WindowProxy representing the window proxy of the element's nested browsing context, if any; otherwise null.

var WindowProxy = HTMLObjectElement.contentWindow;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/contentWindow

Property.

[Read Only]

The contentWindow read-only property of the `web.dom.HTMLObjectElement`
returns a `WindowProxy` representing the window proxy of the
element's nested browsing context, if any; otherwise null.

`var WindowProxy = HTMLObjectElement.contentWindow;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/contentWindow`
sourceraw docstring

datacljs

(data this)

Property.

The data property of the web.dom.HTMLObjectElement interface a web.DOMString that reflects the data HTML attribute, specifying address of a resource's data.

var data = HTMLObjectElement.data; HTMLObjectElement.data;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/data

Property.

The data property of the `web.dom.HTMLObjectElement` interface
a `web.DOMString` that reflects the data HTML attribute, specifying
address of a resource's data.

`var data = HTMLObjectElement.data;
HTMLObjectElement.data;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/data`
sourceraw docstring

declarecljs

(declare this)

Property.

Is a Boolean that reflects the declare HTML attribute, indicating this is a declaration, not an instantiation, of the object.

Property.

Is a Boolean that reflects the declare HTML attribute, indicating
this is a declaration, not an instantiation, of the object.
sourceraw docstring

formcljs

(form this)

Property.

[Read Only]

The form read-only property of the web.dom.HTMLObjectElement Retuns a web.dom.HTMLFormElement representing the object element's owner, or null if there isn't one.

var HTMLFormElement = HTMLObjectElement.form;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/form

Property.

[Read Only]

The form read-only property of the `web.dom.HTMLObjectElement`
Retuns a `web.dom.HTMLFormElement` representing the object element's
owner, or null if there isn't one.

`var HTMLFormElement = HTMLObjectElement.form;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/form`
sourceraw docstring

heightcljs

(height this)

Property.

The height property of the web.dom.HTMLObjectElement interface a web.DOMString that reflects the height HTML attribute, specifying displayed height of the resource in CSS pixels.

var String = HTMLObjectElement.height; HTMLObjectElement.height = String;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/height

Property.

The height property of the `web.dom.HTMLObjectElement` interface
a `web.DOMString` that reflects the height HTML attribute, specifying
displayed height of the resource in CSS pixels.

`var String = HTMLObjectElement.height;
HTMLObjectElement.height = String;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/height`
sourceraw docstring

hspacecljs

(hspace this)

Property.

Is a long representing the horizontal space in pixels around control.

Property.

Is a long representing the horizontal space in pixels around
control.
sourceraw docstring

namecljs

(name this)

Property.

The name property of the web.dom.HTMLObjectElement interface a web.DOMString that reflects the name HTML attribute, specifying name of the browsing context.

var String = HTMLObjectElement.name; HTMLObjectElement.name = String;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/name

Property.

The name property of the `web.dom.HTMLObjectElement` interface
a `web.DOMString` that reflects the name HTML attribute, specifying
name of the browsing context.

`var String = HTMLObjectElement.name;
HTMLObjectElement.name = String;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/name`
sourceraw docstring

set-align!cljs

(set-align! this val)

Property.

Is a DOMString representing an enumerated property indicating of the element's contents with respect to the surrounding context. possible values are "left", "right", "justify", and "center".

Property.

Is a DOMString representing an enumerated property indicating
of the element's contents with respect to the surrounding context.
possible values are "left", "right", "justify", and "center".
sourceraw docstring

set-archive!cljs

(set-archive! this val)

Property.

Is a DOMString that reflects the archive HTML attribute, containing list of archives for resources for this object.

Property.

Is a DOMString that reflects the archive HTML attribute, containing
list of archives for resources for this object.
sourceraw docstring

set-border!cljs

(set-border! this val)

Property.

Is a DOMString that reflects the border HTML attribute, specifying width of a border around the object.

Property.

Is a DOMString that reflects the border HTML attribute, specifying
width of a border around the object.
sourceraw docstring

set-code!cljs

(set-code! this val)

Property.

Is a DOMString representing the name of an applet class file, either the applet's subclass, or the path to get to the class, the class file itself.

Property.

Is a DOMString representing the name of an applet class file,
either the applet's subclass, or the path to get to the class,
the class file itself.
sourceraw docstring

set-code-base!cljs

(set-code-base! this val)

Property.

Is a DOMString that reflects the codebase HTML attribute, specifying base path to use to resolve relative URIs.

Property.

Is a DOMString that reflects the codebase HTML attribute, specifying
base path to use to resolve relative URIs.
sourceraw docstring

set-code-type!cljs

(set-code-type! this val)

Property.

Is a DOMString that reflects the codetype HTML attribute, specifying content type of the data.

Property.

Is a DOMString that reflects the codetype HTML attribute, specifying
content type of the data.
sourceraw docstring

set-custom-validitycljs

(set-custom-validity this message)

Method.

The setCustomValidity() method of the web.dom.HTMLObjectElement sets a custom validity message for the element.

HTMLObjectElement.setCustomValidity(message);

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/setCustomValidity

Method.

The setCustomValidity() method of the `web.dom.HTMLObjectElement`
sets a custom validity message for the element.

`HTMLObjectElement.setCustomValidity(message);`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/setCustomValidity`
sourceraw docstring

set-data!cljs

(set-data! this val)

Property.

The data property of the web.dom.HTMLObjectElement interface a web.DOMString that reflects the data HTML attribute, specifying address of a resource's data.

var data = HTMLObjectElement.data; HTMLObjectElement.data;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/data

Property.

The data property of the `web.dom.HTMLObjectElement` interface
a `web.DOMString` that reflects the data HTML attribute, specifying
address of a resource's data.

`var data = HTMLObjectElement.data;
HTMLObjectElement.data;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/data`
sourceraw docstring

set-declare!cljs

(set-declare! this val)

Property.

Is a Boolean that reflects the declare HTML attribute, indicating this is a declaration, not an instantiation, of the object.

Property.

Is a Boolean that reflects the declare HTML attribute, indicating
this is a declaration, not an instantiation, of the object.
sourceraw docstring

set-height!cljs

(set-height! this val)

Property.

The height property of the web.dom.HTMLObjectElement interface a web.DOMString that reflects the height HTML attribute, specifying displayed height of the resource in CSS pixels.

var String = HTMLObjectElement.height; HTMLObjectElement.height = String;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/height

Property.

The height property of the `web.dom.HTMLObjectElement` interface
a `web.DOMString` that reflects the height HTML attribute, specifying
displayed height of the resource in CSS pixels.

`var String = HTMLObjectElement.height;
HTMLObjectElement.height = String;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/height`
sourceraw docstring

set-hspace!cljs

(set-hspace! this val)

Property.

Is a long representing the horizontal space in pixels around control.

Property.

Is a long representing the horizontal space in pixels around
control.
sourceraw docstring

set-name!cljs

(set-name! this val)

Property.

The name property of the web.dom.HTMLObjectElement interface a web.DOMString that reflects the name HTML attribute, specifying name of the browsing context.

var String = HTMLObjectElement.name; HTMLObjectElement.name = String;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/name

Property.

The name property of the `web.dom.HTMLObjectElement` interface
a `web.DOMString` that reflects the name HTML attribute, specifying
name of the browsing context.

`var String = HTMLObjectElement.name;
HTMLObjectElement.name = String;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/name`
sourceraw docstring

set-standby!cljs

(set-standby! this val)

Property.

Is a DOMString that reflects the standby HTML attribute, specifying message to display while the object loads.

Property.

Is a DOMString that reflects the standby HTML attribute, specifying
message to display while the object loads.
sourceraw docstring

set-tabindex!cljs

(set-tabindex! this val)

Property.

Is a long representing the position of the element in the tabbing order for the current document.

Property.

Is a long representing the position of the element in the tabbing
order for the current document.
sourceraw docstring

set-type!cljs

(set-type! this val)

Property.

The type property of the web.dom.HTMLObjectElement interface a web.DOMString that reflects the type HTML attribute, specifying MIME type of the resource.

var String = HTMLObjectElement.type HTMLObjectElement.type = String;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/type

Property.

The type property of the `web.dom.HTMLObjectElement` interface
a `web.DOMString` that reflects the type HTML attribute, specifying
MIME type of the resource.

`var String = HTMLObjectElement.type
HTMLObjectElement.type = String;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/type`
sourceraw docstring

set-type-must-match!cljs

(set-type-must-match! this val)

Property.

The HTMLObjectElement.typeMustMatch property is a js.Boolean reflects the typemustmatch attribute of the <object> element. indicates if the resource linked by it must match the MIME type by HTMLObjectElement.type in order for this resource to be

var mustMatch = obj.typeMustMatch; obj.typeMustMatch = mustMatch;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/typeMustMatch

Property.

The HTMLObjectElement.typeMustMatch property is a `js.Boolean`
reflects the typemustmatch attribute of the `<object>` element.
indicates if the resource linked by it must match the MIME type
by `HTMLObjectElement.type` in order for this resource to be

`var mustMatch = obj.typeMustMatch;
obj.typeMustMatch = mustMatch;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/typeMustMatch`
sourceraw docstring

set-use-map!cljs

(set-use-map! this val)

Property.

The useMap property of the web.dom.HTMLObjectElement interface a web.DOMString that reflects the usemap HTML attribute, specifying <map> element to use.

var String = HTMLObjectElement.useMap; HTMLObjectElement.useMap = String;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/useMap

Property.

The useMap property of the `web.dom.HTMLObjectElement` interface
a `web.DOMString` that reflects the usemap HTML attribute, specifying
`<map>` element to use.

`var String = HTMLObjectElement.useMap;
HTMLObjectElement.useMap = String;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/useMap`
sourceraw docstring

set-validity!cljs

(set-validity! this val)

Property.

Returns a ValidityState with the validity states that this element in.

Property.

Returns a ValidityState with the validity states that this element
in.
sourceraw docstring

set-vspace!cljs

(set-vspace! this val)

Property.

Is a long representing the horizontal space in pixels around control.

Property.

Is a long representing the horizontal space in pixels around
control.
sourceraw docstring

set-width!cljs

(set-width! this val)

Property.

The width property of the web.dom.HTMLObjectElement interface a web.DOMString that reflects the width HTML attribute, specifying displayed width of the resource in CSS pixels.

var String = HTMLObjectElement.width; HTMLObjectElement.width = String;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/width

Property.

The width property of the `web.dom.HTMLObjectElement` interface
a `web.DOMString` that reflects the width HTML attribute, specifying
displayed width of the resource in CSS pixels.

`var String = HTMLObjectElement.width;
HTMLObjectElement.width = String;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/width`
sourceraw docstring

standbycljs

(standby this)

Property.

Is a DOMString that reflects the standby HTML attribute, specifying message to display while the object loads.

Property.

Is a DOMString that reflects the standby HTML attribute, specifying
message to display while the object loads.
sourceraw docstring

tabindexcljs

(tabindex this)

Property.

Is a long representing the position of the element in the tabbing order for the current document.

Property.

Is a long representing the position of the element in the tabbing
order for the current document.
sourceraw docstring

typecljs

(type this)

Property.

The type property of the web.dom.HTMLObjectElement interface a web.DOMString that reflects the type HTML attribute, specifying MIME type of the resource.

var String = HTMLObjectElement.type HTMLObjectElement.type = String;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/type

Property.

The type property of the `web.dom.HTMLObjectElement` interface
a `web.DOMString` that reflects the type HTML attribute, specifying
MIME type of the resource.

`var String = HTMLObjectElement.type
HTMLObjectElement.type = String;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/type`
sourceraw docstring

type-must-matchcljs

(type-must-match this)

Property.

The HTMLObjectElement.typeMustMatch property is a js.Boolean reflects the typemustmatch attribute of the <object> element. indicates if the resource linked by it must match the MIME type by HTMLObjectElement.type in order for this resource to be

var mustMatch = obj.typeMustMatch; obj.typeMustMatch = mustMatch;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/typeMustMatch

Property.

The HTMLObjectElement.typeMustMatch property is a `js.Boolean`
reflects the typemustmatch attribute of the `<object>` element.
indicates if the resource linked by it must match the MIME type
by `HTMLObjectElement.type` in order for this resource to be

`var mustMatch = obj.typeMustMatch;
obj.typeMustMatch = mustMatch;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/typeMustMatch`
sourceraw docstring

use-mapcljs

(use-map this)

Property.

The useMap property of the web.dom.HTMLObjectElement interface a web.DOMString that reflects the usemap HTML attribute, specifying <map> element to use.

var String = HTMLObjectElement.useMap; HTMLObjectElement.useMap = String;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/useMap

Property.

The useMap property of the `web.dom.HTMLObjectElement` interface
a `web.DOMString` that reflects the usemap HTML attribute, specifying
`<map>` element to use.

`var String = HTMLObjectElement.useMap;
HTMLObjectElement.useMap = String;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/useMap`
sourceraw docstring

validation-messagecljs

(validation-message this)

Property.

[Read Only]

The validationMessage read-only property of the web.dom.HTMLObjectElement returns a web.DOMString representing a localized message that the validation constraints that the control does not satisfy any). This is the empty string if the control is not a candidate constraint validation (willValidate is false), or it satisfies constraints.

var String = HTMLObjectElement.validationMessage;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/validationMessage

Property.

[Read Only]

The validationMessage read-only property of the `web.dom.HTMLObjectElement`
returns a `web.DOMString` representing a localized message that
the validation constraints that the control does not satisfy
any). This is the empty string if the control is not a candidate
constraint validation (willValidate is false), or it satisfies
constraints.

`var String = HTMLObjectElement.validationMessage;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/validationMessage`
sourceraw docstring

validitycljs

(validity this)

Property.

Returns a ValidityState with the validity states that this element in.

Property.

Returns a ValidityState with the validity states that this element
in.
sourceraw docstring

vspacecljs

(vspace this)

Property.

Is a long representing the horizontal space in pixels around control.

Property.

Is a long representing the horizontal space in pixels around
control.
sourceraw docstring

widthcljs

(width this)

Property.

The width property of the web.dom.HTMLObjectElement interface a web.DOMString that reflects the width HTML attribute, specifying displayed width of the resource in CSS pixels.

var String = HTMLObjectElement.width; HTMLObjectElement.width = String;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/width

Property.

The width property of the `web.dom.HTMLObjectElement` interface
a `web.DOMString` that reflects the width HTML attribute, specifying
displayed width of the resource in CSS pixels.

`var String = HTMLObjectElement.width;
HTMLObjectElement.width = String;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/width`
sourceraw docstring

will-validatecljs

(will-validate this)

Property.

[Read Only]

The willValidate read-only property of the web.dom.HTMLObjectElement returns a js.Boolean that indicates whether the element is candidate for constraint validation. Always false for HTMLObjectElement

var Boolean = HTMLObjectElement.willValidate;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/willValidate

Property.

[Read Only]

The willValidate read-only property of the `web.dom.HTMLObjectElement`
returns a `js.Boolean` that indicates whether the element is
candidate for constraint validation. Always false for HTMLObjectElement

`var Boolean = HTMLObjectElement.willValidate;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/willValidate`
sourceraw docstring

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

× close