Track srclang Property
Example
Get the language code of the track text data:
var x = document.getElementById("myTrack").srclang;
The result of x could be:
en
Description
The srclang property sets or returns the value of the srclang attribute of the track.
The srclang attribute specifies the language of the track text data.
This attribute is required if kind="subtitles".
Tip: To view all available language codes, go to our Language code reference.
Browser Support
Property | |||||
---|---|---|---|---|---|
srclang | Yes | 10.0 | Not supported | Not supported | Yes |
Syntax
Return the srclang property:
trackObject.srclang
Set the srclang property:
trackObject.srclang = language_code
Property Values
Value | Description |
---|---|
language_code | Specifies a two-letter language code that specifies the language of the track text data |
Technical Details
Return Value: | A String, representing the language code of the text track data |
---|
More Examples
Example
Change the language code of the track text data:
document.getElementById("myTrack").srclang = "no";
Related Pages
HTML reference: HTML <track> srclang attribute
❮ Track Object