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");

Try it yourself

Create Parameter object

You can create a <param> element using the document.createElement() method:

var x = document.createElement("PARAM");

Try it yourself

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