HTML DOM Parameter Object | HTML Parameter Tutorial by WDH

HTML DOM Parameter Object


HTML DOM Parameter object


The Parameter object

The Parameter object represents the HTML-lt;param> element.

The element is used to define the parameters of the embedded plug-in in the element.

Access the Parameter object

You can use getElementById() to access the elements:

var x = document.getElementById("myParam"); Give it a try

Create a Parameter object

You can use the document.createElement() method to create the element of the .lt;param?gt;

var x = document.createElement("PARAM"); Give it a try

The Parameter object property

Property Describe
name Set or return the name property value of the argument
value Set or return the value property value of the argument

Standard properties and events

The Parameter object also supports standard properties and events.


Related articles

HTML tutorial: HTML plug-in

HTML Reference Manual: HTML slt;param.gt; Tags

HTML Reference Manual: HTML slt;object.gt; Tags