From http://www.w3schools.com (Copyright Refsnes Data)
The param element allows you to specify the run-time settings for an object inserted into HTML documents.
Some HTML 4.01 attributes are no longer supported.
Source | Output |
---|---|
<object
id="Slider1" width="100" height="50"> <param name="BorderStyle" value="1" /> <param name="MousePointer" value="0" /> <param name="Enabled" value="1" /> <param name="Min" value="0" /> <param name="Max" value="10" /> </object> |
Attribute | Value | Description | 4 | DTD |
---|---|---|---|---|
name | unique_name | Defines a unique name for the parameter | 4 | 5 |
type | MIME type | Specifies the internet media type for the parameter. Not supported. | 4 | |
value | value | Specifies the value of the parameter | 4 | 5 |
valuetype | data ref object |
Specifies the MIME type of the value. Not supported. | 4 |
class, contenteditable, contextmenu, dir, draggable, id, irrelevant, lang, ref, registrationmark, tabindex, template, title |
For a full description, go to Standard Attributes in HTML 5.
onabort, onbeforeunload, onblur, onchange, onclick, oncontextmenu, ondblclick, ondrag, ondragend, ondragenter, ondragleave, ondragover, ondragstart, ondrop, onerror, onfocus, onkeydown, onkeypress, onkeyup, onload, onmessage, onmousedown, onmousemove, onmouseover, onmouseout, onmouseup, onmousewheel, onresize, onscroll, onselect, onsubmit, onunload |
For a full description, go to Event Attributes in HTML 5.
From http://www.w3schools.com (Copyright Refsnes Data)