HTML <param> value attribute

Definition and Usage

value attribute specifies the value of the <param> element.

This attribute corresponds to name attribute Used together, for <object> tag The plugin specifies the parameter.

This value can be any value supported by the specified object.

Example

Set the "autoplay" parameter to "true" so that the sound will start playing immediately after the page is loaded:

<object data="bird.wav">
  <param name="autoplay" value="true">
</object>

Try It Yourself

Syntax

<param value="value">

Attribute Value

Value Description
value Specify the value of the parameter.

Browser Support

Chrome Edge Firefox Safari Opera
Chrome Edge Firefox Safari Opera
Support Support Support Support Support

All mainstream browsers support the value attribute. However, not all browsers support the file formats defined in <object>.

c.html" -->