The HTMLObjectElement interface provides special properties and
(beyond those on the html.HTMLElement
interface it also has
to it by inheritance) for manipulating the layout and presentation
web.<object>
element, representing external resources.
The HTMLObjectElement interface provides special properties and (beyond those on the `html.HTMLElement` interface it also has to it by inheritance) for manipulating the layout and presentation `web.<object>` element, representing external resources.
(check-validity this)
Method.
The checkValidity() method of the html.HTMLObjectElement
interface
a web.Boolean
that always is true, because object objects are
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 `html.HTMLObjectElement` interface a `web.Boolean` that always is true, because object objects are candidates for constraint validation. `var Boolean = HTMLObjectElement.checkValidity();` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/checkValidity`
(content-document this)
Property.
The contentDocument read-only property of the html.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. The contentDocument read-only property of the `html.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`
(content-window this)
Property.
The contentWindow read-only property of the html.HTMLObjectElement
returns a web.WindowProxy
representing the window proxy of
object 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. The contentWindow read-only property of the `html.HTMLObjectElement` returns a `web.WindowProxy` representing the window proxy of object 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`
(data this)
Property.
The data property of the html.HTMLObjectElement
interface returns
dom.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 `html.HTMLObjectElement` interface returns `dom.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`
(form this)
Property.
The form read-only property of the html.HTMLObjectElement
interface
a html.HTMLFormElement
representing the object element's form
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. The form read-only property of the `html.HTMLObjectElement` interface a `html.HTMLFormElement` representing the object element's form or null if there isn't one. `var HTMLFormElement = HTMLObjectElement.form;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/form`
(height this)
Property.
The height property of the html.HTMLObjectElement
interface
a dom.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 `html.HTMLObjectElement` interface a `dom.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`
(name this)
Property.
The name property of the html.HTMLObjectElement
interface returns
dom.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 `html.HTMLObjectElement` interface returns `dom.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`
(set-content-document! this val)
Property.
The contentDocument read-only property of the html.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. The contentDocument read-only property of the `html.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`
(set-content-window! this val)
Property.
The contentWindow read-only property of the html.HTMLObjectElement
returns a web.WindowProxy
representing the window proxy of
object 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. The contentWindow read-only property of the `html.HTMLObjectElement` returns a `web.WindowProxy` representing the window proxy of object 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`
(set-custom-validity this message)
Method.
The setCustomValidity() method of the html.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 `html.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`
(set-data! this val)
Property.
The data property of the html.HTMLObjectElement
interface returns
dom.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 `html.HTMLObjectElement` interface returns `dom.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`
(set-form! this val)
Property.
The form read-only property of the html.HTMLObjectElement
interface
a html.HTMLFormElement
representing the object element's form
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. The form read-only property of the `html.HTMLObjectElement` interface a `html.HTMLFormElement` representing the object element's form or null if there isn't one. `var HTMLFormElement = HTMLObjectElement.form;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/form`
(set-height! this val)
Property.
The height property of the html.HTMLObjectElement
interface
a dom.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 `html.HTMLObjectElement` interface a `dom.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`
(set-name! this val)
Property.
The name property of the html.HTMLObjectElement
interface returns
dom.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 `html.HTMLObjectElement` interface returns `dom.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`
(set-type! this val)
Property.
The type property of the html.HTMLObjectElement
interface returns
dom.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 `html.HTMLObjectElement` interface returns `dom.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`
(set-type-must-match! this val)
Property.
The HTMLObjectElement.typeMustMatch property is a web.Boolean
reflects the typemustmatch attribute of the web.<object>
element.
indicates if the resource linked by it must match the MIME type
by html.HTMLObjectElement.type
in order for this resource to
used.
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 `web.Boolean` reflects the typemustmatch attribute of the `web.<object>` element. indicates if the resource linked by it must match the MIME type by `html.HTMLObjectElement.type` in order for this resource to used. `var mustMatch = obj.typeMustMatch; obj.typeMustMatch = mustMatch;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/typeMustMatch`
(set-use-map! this val)
Property.
The useMap property of the html.HTMLObjectElement
interface
a dom.DOMString
that reflects the usemap HTML attribute, specifying
web.<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 `html.HTMLObjectElement` interface a `dom.DOMString` that reflects the usemap HTML attribute, specifying `web.<map>` element to use. `var String = HTMLObjectElement.useMap; HTMLObjectElement.useMap = String;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/useMap`
(set-validation-message! this val)
Property.
The validationMessage read-only property of the html.HTMLObjectElement
returns a dom.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. The validationMessage read-only property of the `html.HTMLObjectElement` returns a `dom.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`
(set-validity! this val)
Property.
The validity read-only property of the html.HTMLObjectElement
returns a web.ValidityState
with the validity states that this
is in.
var ValidityState = HTMLObjectElement.validity;
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/%5Cvalidity
Property. The validity read-only property of the `html.HTMLObjectElement` returns a `web.ValidityState` with the validity states that this is in. `var ValidityState = HTMLObjectElement.validity;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/%5Cvalidity`
(set-width! this val)
Property.
The width property of the html.HTMLObjectElement
interface
a dom.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 `html.HTMLObjectElement` interface a `dom.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`
(set-will-validate! this val)
Property.
The willValidate read-only property of the html.HTMLObjectElement
returns a web.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. The willValidate read-only property of the `html.HTMLObjectElement` returns a `web.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`
(type this)
Property.
The type property of the html.HTMLObjectElement
interface returns
dom.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 `html.HTMLObjectElement` interface returns `dom.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`
(type-must-match this)
Property.
The HTMLObjectElement.typeMustMatch property is a web.Boolean
reflects the typemustmatch attribute of the web.<object>
element.
indicates if the resource linked by it must match the MIME type
by html.HTMLObjectElement.type
in order for this resource to
used.
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 `web.Boolean` reflects the typemustmatch attribute of the `web.<object>` element. indicates if the resource linked by it must match the MIME type by `html.HTMLObjectElement.type` in order for this resource to used. `var mustMatch = obj.typeMustMatch; obj.typeMustMatch = mustMatch;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/typeMustMatch`
(use-map this)
Property.
The useMap property of the html.HTMLObjectElement
interface
a dom.DOMString
that reflects the usemap HTML attribute, specifying
web.<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 `html.HTMLObjectElement` interface a `dom.DOMString` that reflects the usemap HTML attribute, specifying `web.<map>` element to use. `var String = HTMLObjectElement.useMap; HTMLObjectElement.useMap = String;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/useMap`
(validation-message this)
Property.
The validationMessage read-only property of the html.HTMLObjectElement
returns a dom.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. The validationMessage read-only property of the `html.HTMLObjectElement` returns a `dom.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`
(validity this)
Property.
The validity read-only property of the html.HTMLObjectElement
returns a web.ValidityState
with the validity states that this
is in.
var ValidityState = HTMLObjectElement.validity;
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/%5Cvalidity
Property. The validity read-only property of the `html.HTMLObjectElement` returns a `web.ValidityState` with the validity states that this is in. `var ValidityState = HTMLObjectElement.validity;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/%5Cvalidity`
(width this)
Property.
The width property of the html.HTMLObjectElement
interface
a dom.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 `html.HTMLObjectElement` interface a `dom.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`
(will-validate this)
Property.
The willValidate read-only property of the html.HTMLObjectElement
returns a web.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. The willValidate read-only property of the `html.HTMLObjectElement` returns a `web.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`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close