< HTML Audio/Video DOM Reference
Example
Set the media group for 2 videos:
var vid1 = document.getElementById("myVideo1");
var vid2 = document.getElementById("myVideo2");
vid1.mediaGroup = "test";
vid2.mediaGroup = "test";
Try it Yourself »
Definition and Usage
The mediaGroup property sets or returns the name of the media group the audio/video is a part of.
A media group allow 2 or more audio/video elements to be kept synchronized.
Browser Support
The numbers in the table specify the first browser version that fully supports the property.
Property | |||||
---|---|---|---|---|---|
mediaGroup | Yes | 9.0 | Yes | Yes | Yes |
Syntax
Return the mediaGroup property:
audio|video.mediaGroup
Set the mediaGroup property:
audio|video.mediaGroup="group"
Property Values
Value | Description |
---|---|
group | Specifies the media group of the audio/video |
Technical Details
Return Value: | A String. Indicating the media group of the audio/video |
---|