Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY CYBERSECURITY DATA SCIENCE
     ❯   

HTML Audio/Video DOM mediaGroup Property

❮ HTML Audio/Video DOM Reference

Example

Set the media group for 2 videos:

let vid1 = document.getElementById("myVideo1");
let 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

❮ HTML Audio/Video DOM Reference