---
title: HTMLObjectElement
slug: Web/API/HTMLObjectElement
tags:
- API
- HTML DOM
- Interface
- NeedsTranslation
- Reference
- TopicStub
translation_of: Web/API/HTMLObjectElement
---
The HTMLObjectElement
interface provides special properties and methods (beyond those on the {{domxref("HTMLElement")}} interface it also has available to it by inheritance) for manipulating the layout and presentation of {{HTMLElement("object")}} element, representing external resources.
{{InheritanceDiagram(600, 120)}}
Properties
Inherits properties from its parent, {{domxref("HTMLElement")}}.
- {{domxref("HTMLObjectElement.align")}} {{obsolete_inline}}
- Is a {{domxref("DOMString")}} representing an enumerated property indicating alignment of the element's contents with respect to the surrounding context. The possible values are
"left"
, "right"
, "justify"
, and "center"
.
- {{domxref("HTMLObjectElement.archive")}} {{obsolete_inline}}
- Is a {{domxref("DOMString")}} that reflects the {{htmlattrxref("archive", "object")}} HTML attribute, containing a list of archives for resources for this object.
- {{domxref("HTMLObjectElement.border")}} {{obsolete_inline}}
- Is a {{domxref("DOMString")}} that reflects the {{htmlattrxref("border", "object")}} HTML attribute, specifying the width of a border around the object.
- {{domxref("HTMLObjectElement.code")}} {{obsolete_inline}}
- Is a {{domxref("DOMString")}} representing the name of an applet class file, containing either the applet's subclass, or the path to get to the class, including the class file itself.
- {{domxref("HTMLObjectElement.codeBase")}} {{obsolete_inline}}
- Is a {{domxref("DOMString")}} that reflects the {{htmlattrxref("codebase", "object")}} HTML attribute, specifying the base path to use to resolve relative URIs.
- {{domxref("HTMLObjectElement.codeType")}} {{obsolete_inline}}
- Is a {{domxref("DOMString")}} that reflects the {{htmlattrxref("codetype", "object")}} HTML attribute, specifying the content type of the data.
- {{domxref("HTMLObjectElement.contentDocument")}} {{readonlyInline}}
- Returns a {{domxref("Document")}} representing the active document of the object element's nested browsing context, if any; otherwise
null
.
- {{domxref("HTMLObjectElement.contentWindow")}} {{readonlyInline}}
- Returns a {{domxref("WindowProxy")}} representing the window proxy of the object element's nested browsing context, if any; otherwise
null
.
- {{domxref("HTMLObjectElement.data")}}
- Returns a {{domxref("DOMString")}} that reflects the {{htmlattrxref("data", "object")}} HTML attribute, specifying the address of a resource's data.
- {{domxref("HTMLObjectElement.declare")}} {{obsolete_inline}}
- Is a {{jsxref("Boolean")}} that reflects the {{htmlattrxref("declare", "object")}} HTML attribute, indicating that this is a declaration, not an instantiation, of the object.
- {{domxref("HTMLObjectElement.form")}} {{readonlyInline}}
- Retuns a {{domxref("HTMLFormElement")}} representing the object element's form owner, or null if there isn't one.
- {{domxref("HTMLObjectElement.height")}}
- Returns a {{domxref("DOMString")}} that reflects the {{htmlattrxref("height", "object")}} HTML attribute, specifying the displayed height of the resource in CSS pixels.
- {{domxref("HTMLObjectElement.hspace")}} {{obsolete_inline}}
- Is a
long
representing the horizontal space in pixels around the control.
- {{domxref("HTMLObjectElement.name")}}
- Returns a {{domxref("DOMString")}} that reflects the {{htmlattrxref("name", "object")}} HTML attribute, specifying the name of the browsing context.
- {{domxref("HTMLObjectElement.standby")}} {{obsolete_inline}}
- Is a {{domxref("DOMString")}} that reflects the {{htmlattrxref("standby", "object")}} HTML attribute, specifying a message to display while the object loads.
- {{domxref("HTMLObjectElement.tabindex")}}
- Is a
long
representing the position of the element in the tabbing navigation order for the current document.
- {{domxref("HTMLObjectElement.type")}}
- Is a {{domxref("DOMString")}} that reflects the {{htmlattrxref("type", "object")}} HTML attribute, specifying the MIME type of the resource.
- {{domxref("HTMLObjectElement.typeMustMatch")}}
- Is a {{jsxref("Boolean")}} that reflects the {{htmlattrxref("typeMustMatch", "object")}} HTML attribute, indicating if the resource specified by {{htmlattrxref("data", "object")}} must only be played if it matches the {{htmlattrxref("type", "object")}} attribute.
- {{domxref("HTMLObjectElement.useMap")}}
- Is a {{domxref("DOMString")}} that reflects the {{htmlattrxref("usemap", "object")}} HTML attribute, specifying a {{HTMLElement("map")}} element to use.
- {{domxref("HTMLObjectElement.validationMessage")}} {{readonlyInline}}
- Returns a {{domxref("DOMString")}} representing a localized message that describes the validation constraints that the control does not satisfy (if any). This is the empty string if the control is not a candidate for constraint validation (
willValidate
is false
), or it satisfies its constraints.
- {{domxref("HTMLObjectElement.validity")}} {{readonlyInline}}
- Returns a {{domxref("ValidityState")}} with the validity states that this element is in.
- {{domxref("HTMLObjectElement.vspace")}} {{obsolete_inline}}
- Is a
long
representing the horizontal space in pixels around the control.
- {{domxref("HTMLObjectElement.width")}}
- Is a {{domxref("DOMString")}} that reflects the {{htmlattrxref("width", "object")}} HTML attribute, specifying the displayed width of the resource in CSS pixels.
- {{domxref("HTMLObjectElement.willValidate")}} {{readonlyInline}}
- Returns a {{jsxref("Boolean")}} that indicates whether the element is a candidate for constraint validation. Always
false
for HTMLObjectElement
objects.
Methods
Inherits methods from its parent, {{domxref("HTMLElement")}}.
- {{domxref("HTMLObjectElement.checkValidity()")}}
- Retuns a {{jsxref("Boolean")}} that always is
true
, because object
objects are never candidates for constraint validation.
- {{domxref("HTMLObjectElement.setCustomValidity()")}}
- Sets a custom validity message for the element. If this message is not the empty string, then the element is suffering from a custom validity error, and does not validate.
Specifications
Specification |
Status |
Comment |
{{SpecName('HTML WHATWG', "#htmlobjectelement", "HTMLObjectElement")}} |
{{Spec2('HTML WHATWG')}} |
|
{{SpecName('HTML5 W3C', "embedded-content-0.html#the-object-element", "HTMLObjectElement")}} |
{{Spec2('HTML5 W3C')}} |
The W3C specification is a latest of a previous version of {{SpecName("HTML WHATWG")}}
Technically, the property tabindex is now defined on {{domxref("HTMLElement")}}.
The following properties are now obsolete: align , archive , border , code , codeBase , codeType , declare , hspace , standby , and vspace .
The following properties have been added: typeMustMatch , contentWindow , willValidate , validity , and validationMessage .
The following methods have been added: checkValidity() and setCustomValidity() . |
{{SpecName('DOM2 HTML', 'html.html#ID-9893177', 'HTMLObjectElement')}} |
{{Spec2('DOM2 HTML')}} |
The contentDocument property has been added. |
{{SpecName('DOM1', 'level-one-html.html#ID-9893177', 'HTMLObjectElement')}} |
{{Spec2('DOM1')}} |
Initial definition. |
Browser compatibility
{{Compat("api.HTMLObjectElement")}}
See also
- The HTML element implementing this interface: {{HTMLElement("object")}}