Latest web development tutorials

HTML DOM Parameter Object

Parameter Object

Parameter object represents an HTML <param> element.

<Param> element is used to define the parameters <object> element embedded in the plug-in.

Access Parameter Object

You can use getElementById () to access the <param> element:

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

Create Parameter object

You can use document.createElement () method to create <param> element:

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

Parameter Object Properties

Attributes description
name Sets or returns the parameter name attribute value
value Sets or returns the property value parameter value

Standard properties and events

Parameter objects also supports standard attributes and events .


related articles

HTML Tutorial: HTML widget

HTML Reference Manual: HTML <param> tag

HTML Reference Manual: HTML <Object> tag