Required | Tag Specific | Core | Focus | Events | Language |
---|---|---|---|---|---|
name | type value valuetype | id |
Attribute | Description |
---|---|
name | The name attribute specifies the name of the parameter. HTML <param> example using the name attribute. This example embeds a Windows Media Player. <object classid="clsid:6bf52a52-394a-11d3-b153-00c04F79faa6" width="300" height="265"> <param name="autostart" value="false"> <param name="stretchtofit" value="true"> <param name="urmode" value="full"> <param name="url" value="shiny_button_stream.wmv"> <p>This browser does not support Windows Media Player using the object tag.</p> </object> XHTML <param> example using the name attribute. This example embeds a Windows Media Player. <object classid="clsid:6bf52a52-394a-11d3-b153-00c04F79faa6" width="300" height="265"> <param name="autostart" value="false" /> <param name="stretchtofit" value="true" /> <param name="urmode" value="full" /> <param name="url" value="shiny_button_stream.wmv" /> <p>This browser does not support Windows Media Player using the object tag.</p> </object> Note: This is a required attribute. |
type | The type attribute specifies the content type, or media type, of the resource when the valuetype attribute is set to "ref". |
value | The value attribute specifies the value of the parameter. HTML <param> example using the value attribute. This example embeds a Windows Media Player. <object classid="clsid:6bf52a52-394a-11d3-b153-00c04F79faa6" width="300" height="265"> <param name="autostart" value="false"> <param name="stretchtofit" value="true"> <param name="urmode" value="full"> <param name="url" value="shiny_button_stream.wmv"> <p>This browser does not support Windows Media Player using the object tag.</p> </object> XHTML <param> example using the value attribute. This example embeds a Windows Media Player. <object classid="clsid:6bf52a52-394a-11d3-b153-00c04F79faa6" width="300" height="265"> <param name="autostart" value="false" /> <param name="stretchtofit" value="true" /> <param name="urmode" value="full" /> <param name="url" value="shiny_button_stream.wmv" /> <p>This browser does not support Windows Media Player using the object tag.</p> </object> |
valuetype | The valuetype attribute specifies the type of the value attribute. Possible values are "data", "object", and "ref". "data" = Indicates that the value attribute is a text string. This is the default value. "object" = Indicates that the value attribute refers to another object within the current web page. The value attribute points to the id attribute of the other object. "ref" = Indicates that the value attribute is a URL. |
id | The id attribute assigns a unique name to a tag. This allows style sheets or scripts to reference the tag. See id Example |
<param> example embedding a Windows Media Player. |