HTMLParamElement
Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see thecompatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
TheHTMLParamElement interface provides special properties (beyond those of the regularHTMLElement object interface it inherits) for manipulating<param> elements, representing a pair of a key and a value that acts as a parameter for an<object> element.
In this article
Instance properties
Inherits properties from its parent,HTMLElement.
HTMLParamElement.nameDeprecatedA string representing the name of the parameter. It reflects the
nameattribute.HTMLParamElement.valueDeprecatedA string representing the value associated to the parameter. It reflects the
valueattribute.HTMLParamElement.typeDeprecatedA string containing the type of the parameter when
valueTypehas the"ref"value. It reflects thetypeattribute.HTMLParamElement.valueTypeDeprecatedA string containing the type of the
value. It reflects thevaluetype attribute and has one of the values:"data","ref", or"object".
Instance methods
No specific methods, inherits methods from its parent,HTMLElement.
Specifications
| Specification |
|---|
| HTML> # htmlparamelement> |
Browser compatibility
See also
- The HTML element implementing this interface:
<param>.