HTML DOM Parameter Object
Parameter object
The Parameter object represents the HTML <param> element.
Access Parameter object
You can access the <param> element using getElementById():
var x = document.getElementById("myParam");
Create Parameter object
You can create a <param> element using the document.createElement() method:
var x = document.createElement("PARAM");
Parameter Object Properties
Properties | Description |
---|---|
name | Set or return the value of the parameter's name attribute. |
value | Set or return the value of the parameter's value attribute. |
Standard Properties and Events
Parameter Object Supports StandardsPropertiesAndEvents.
Related Pages
HTML Reference Manual:HTML <param> Tag