Dom Obj Param π
2026-06-19 | π JavaScript
# HTML DOM Parameter Object
* * *
## Parameter Object
The Parameter object represents an HTML `` element.
The `` element is used to define parameters for plugins embedded within an `` element.
### Accessing the Parameter Object
You can access the `` element using `getElementById()`:
```javascript
var x = document.getElementById("myParam");
(#)
### Creating a Parameter Object
You can create a `` element using the `document.createElement()` method:
```javascript
var x = document.createElement("PARAM");
(#)
## Parameter Object Properties
| Property | Description |
| --- | --- |
| (#) | Sets or returns the value of the name attribute of the parameter |
| (#) | Sets or returns the value of the value attribute of the parameter |
## Standard Properties and Events
The Parameter object also supports standard (#) and (#).
* * *
## Related Articles
HTML Tutorial: (#)
HTML Reference: [HTML `` Tag](#)
HTML Reference: [HTML `` Tag](#)