HTML Audio/Video DOM controller attribute
Example
Check if the video has a media controller:
myVid=document.getElementById("video1"); alert("Controller: ", myVid.controller);
Definition and Usage
The controller attribute returns the current media controller of the audio and video.
By default, audio and video elements do not have a media controller. If a media controller is specified, the controller attribute will return it in the form of MediaController.
Browser Support
The controller attribute is not supported by any mainstream browser.
Syntax
audio|video.controller
Return Value
Value | Description |
---|---|
MediaController Object |
Represents the media controller for the audio/video. MediaController Object Properties/Methods:
|