HTML <param> Tag
<object data="/resources/lostmojo.wav">
<param name="controller" value="true">
<param name="autoplay" value="false">
</object>
The above example demonstrates usage of the <param> element.
The <param> element defines a parameter for an <object> element. More specifically, it provides parameters for plugins invoked by the <object> element.
The <param> element is optional — you can use the <object> without providing any parameters. However, if you do use the <param> element, both the name and value attributes must be provided.
The name attribute gives the name of the parameter.
The value attribute gives the value of the parameter.