
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
HTML DOM Parameter Object
The HTML DOM Parameter Object represent the <param> element of an HTML document.
Create param object
Syntax
Following is the syntax −
document.createElement(“PARAM”);
Properties of param object
Property | Explanation |
---|---|
name | It returns and modify the value of the name attribute of a param element in an HTML document. |
value | It returns and modify the content of the value attribute of a param element in an HTML document. |
Example
Let us see an example of param object −
<!DOCTYPE html> <html> <head> <style> html{ height:100%; } body{ text-align:center; color:#fff; background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) center/cover no-repeat; height:100%; } .btn{ background:#0197F6; border:none; height:2rem; border-radius:2px; width:60%; margin:2rem auto; display:block; color:#fff; outline:none; cursor:pointer; } </style> </head> <body> <h1>DOM Parameter Object Demo</h1> <button onclick="create()" class="btn">Create a Param element</button> <script> function create() { var objectElement = document.createElement("OBJECT"); objectElement.setAttribute("data", "https://www.tutorialspoint.com/html/Kalimba.mp3"); objectElement.setAttribute("class", "object-element"); document.body.appendChild(objectElement); var paramObject = document.createElement("PARAM"); paramObject.setAttribute("name", "autoplay"); paramObject.setAttribute("value", "true"); document.querySelector(".object-element").appendChild(paramObject); } </script> </body> </html>
Output
This will produce the following output −
Click on “Create a Param element” button to create a <param> element in the HTML document −
- Related Articles
- HTML DOM Object Object
- HTML DOM HTML Object
- HTML DOM Ins Object
- HTML DOM HR Object
- HTML DOM Variable Object
- HTML DOM aside Object
- HTML DOM Anchor Object
- HTML DOM TableData Object
- HTML DOM TableHeader Object
- HTML DOM TableRow Object
- HTML DOM Textarea Object
- HTML DOM Meter Object
- HTML DOM MouseEvent Object
- HTML DOM Nav Object
- HTML DOM Ol Object

Advertisements