<object>
The <object> HTML element represents an external resource, which can be treated as an image, a nested browsing context, or a resource to be handled by a plugin.
| Content categories | Flow content; phrasing content; embedded content, palpable content; if the element has a usemap attribute, interactive content; listed, submittable form-associated element. |
|---|---|
| Permitted content | zero or more <param> elements, then transparent. |
| Tag omission | None, both the starting and ending tag are mandatory. |
| Permitted parents | Any element that accepts embedded content. |
| Implicit ARIA role | No corresponding role |
| Permitted ARIA roles | application, document, image |
| DOM interface | HTMLObjectElement |
Attributes
This element includes the global attributes.
-
archive -
A space-separated list of URIs for archives of resources for the object.
-
border -
The width of a border around the control, in pixels.
-
classid -
The URI of the object's implementation. It can be used together with, or in place of, the data attribute.
-
codebase -
The base path used to resolve relative URIs specified by classid, data, or archive. If not specified, the default is the base URI of the current document.
-
codetype -
The content type of the data specified by classid.
data-
The address of the resource as a valid URL. At least one of data and type must be defined.
-
declare -
The presence of this Boolean attribute makes this element a declaration only. The object must be instantiated by a subsequent
<object>element. In HTML5, repeat the <object> element completely each time that the resource is reused. form-
The form element, if any, that the object element is associated with (its form owner). The value of the attribute must be an ID of a
<form>element in the same document. height-
The height of the displayed resource, in CSS pixels. -- (Absolute values only. NO percentages)
name-
The name of valid browsing context (HTML5), or the name of the control (HTML 4).
-
standby -
A message that the browser can show while loading the object's implementation and data.
type-
The content type of the resource specified by data. At least one of data and type must be defined.
usemap-
A hash-name reference to a
<map>element; that is a '#' followed by the value of anameof a map element. width-
The width of the display resource, in CSS pixels. -- (Absolute values only. NO percentages)
Examples
Embed a flash movie
<!-- Embed a flash movie --> <object data="movie.swf" type="application/x-shockwave-flash"></object> <!-- Embed a flash movie with parameters --> <object data="movie.swf" type="application/x-shockwave-flash"> <param name="foo" value="bar"> </object>
Specifications
| Specification |
|---|
| HTML Standard (HTML) # the-object-element |
Browser compatibility
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
object |
Yes |
12 |
1 |
Yes |
Yes |
Yes |
Yes |
Yes |
4 |
Yes |
Yes |
Yes |
archive |
Yes |
12 |
1 |
Yes |
Yes |
Yes |
Yes |
Yes |
4 |
Yes |
Yes |
Yes |
aspect_ratio_computed_from_attributes |
79 |
79 |
71
69-71
|
No |
66 |
14 |
79 |
79 |
79 |
57 |
14 |
12.0 |
border |
Yes |
12 |
1 |
Yes |
Yes |
Yes |
Yes |
Yes |
4 |
Yes |
Yes |
Yes |
classid |
Yes |
12 |
1 |
Yes |
Yes |
Yes |
Yes |
Yes |
4 |
Yes |
Yes |
Yes |
codebase |
Yes |
12 |
1 |
Yes |
Yes |
Yes |
Yes |
Yes |
4 |
Yes |
Yes |
Yes |
codetype |
Yes |
12 |
1 |
Yes |
Yes |
Yes |
Yes |
Yes |
4 |
Yes |
Yes |
Yes |
data |
Yes |
12 |
1 |
Yes |
Yes |
Yes |
Yes |
Yes |
4 |
Yes |
Yes |
Yes |
declare |
Yes |
12 |
1 |
Yes |
Yes |
Yes |
Yes |
Yes |
4 |
Yes |
Yes |
Yes |
form |
Yes |
12 |
1 |
Yes |
Yes |
Yes |
Yes |
Yes |
4 |
Yes |
Yes |
Yes |
height |
Yes |
12 |
1 |
Yes |
Yes |
Yes |
Yes |
Yes |
4 |
Yes |
Yes |
Yes |
name |
Yes |
12 |
1 |
Yes |
Yes |
Yes |
Yes |
Yes |
4 |
Yes |
Yes |
Yes |
standby |
Yes |
12 |
1 |
Yes |
Yes |
Yes |
Yes |
Yes |
4 |
Yes |
Yes |
Yes |
tabindex |
Yes |
12 |
1 |
Yes |
Yes |
Yes |
Yes |
Yes |
4 |
Yes |
Yes |
Yes |
type |
Yes |
12 |
1 |
Yes |
Yes |
Yes |
Yes |
Yes |
4 |
Yes |
Yes |
Yes |
usemap |
Yes |
12 |
1 |
Yes |
Yes |
Yes |
Yes |
Yes |
4 |
Yes |
Yes |
Yes |
width |
Yes |
12 |
1 |
Yes |
Yes |
Yes |
Yes |
Yes |
4 |
Yes |
Yes |
Yes |
See also
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/object