HTML <audio> controlslist Attribute
Example
<audio controls controlslist="nodownload nofullscreen">
Meaning
The controlslist attribute, when specified, helps the browser select what controls to show for the audio element whenever the browser shows its own set of controls (that is, when the controls attribute is specified).
The allowed values are nodownload, nofullscreen and noremoteplayback.
Standard Syntax
<audio controlslist="nodownload | nofullscreen | noremoteplayback">
Advertisement
Attribute Values
| Value | Description |
|---|---|
| nodownload | Disable download option. |
| nofullscreen | Disable ful screen option. |
| noremoteplayback | Disable remote play back option. |