Audio controls Property
Example
Enable controls for an audio:
	document.getElementById("myAudio").controls = true;
Try it yourself »
Definition and Usage
The controls property sets or returns whether a audio should display standard audio controls.
This property reflects the <audio> controls attribute.
When present, it specifies that the audio controls should be displayed.
Audio controls should include:
- Play
 - Pause
 - Seeking
 - Volume
 
Note: The <audio> element is new in HTML5.
Browser Support
![]()
The controls property is supported in all major browsers.
Note: Internet Explorer 8 and earlier versions, do not support the <audio> element.
Syntax
Return the controls property:
	audioObject.controls
Set the controls property:
	audioObject.controls=true|false
Property Values
| Value | Description | 
|---|---|
| true|false | Specifies whether a audio should have controls displayed, or not
  | 
  
Technical Details
| Return Value: | A Boolean, returns true if audio controls are displayed, otherwise it returns false | 
|---|---|
| Default Value: | false | 
More Examples
Example
Find out if the audio controls are displayed:
	var x = document.getElementById("myAudio").controls;
The result of x will be:
	true
Try it yourself »
Related Pages
HTML reference: HTML <audio> controls attribute
 Audio Object

