web api interface
HTMLEmbedElement
The HTMLEmbedElement interface provides special properties (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating <embed> elements.
[!NOTE] This topic describes the
HTMLEmbedElementinterface as defined in the standard. It does not address earlier, non-standardized version of the interface.
Instance properties
Inherits properties from its parent, HTMLElement.
alignDeprecated- : A string representing an enumerated property indicating alignment of the element’s contents with respect to the surrounding context. The possible values are
"left","right","center", and"justify".
- : A string representing an enumerated property indicating alignment of the element’s contents with respect to the surrounding context. The possible values are
height- : A string reflecting the
heightHTML attribute, containing the displayed height of the resource.
- : A string reflecting the
nameDeprecated- : A string representing the name of the embedded object.
src- : A string that reflects the
srcHTML attribute, containing the address of the resource.
- : A string that reflects the
type- : A string that reflects the
typeHTML attribute, containing the type of the resource.
- : A string that reflects the
width- : A string that reflects the
widthHTML attribute, containing the displayed width of the resource.
- : A string that reflects the
Instance methods
Also inherits methods from its parent interface, HTMLElement.
getSVGDocument()- : Returns the embedded SVG as a
Document.
- : Returns the embedded SVG as a
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.
See also
- The HTML element implementing this interface:
<embed>