Turning Off Closed Caption On Html5 Video By Default April 17, 2024 Post a Comment Here's what I have... <scripttype="text/javascript"> $(document).ready(function() { var video = document.querySelector('#video'); // get the video elementvar tracks = video.textTracks; // one for each track elementvar track = tracks[0]; // corresponds to the first track element track.mode = 'hidden'; }); Copy Share You may like these postsHow To Correctly Set Layout Using Example BelowHotspots On Full-screen Backgrounds With Background-position: CenterGoogle Plus Sign-in In CheckboxHow To Change Padding Of Math In Mathjax? Post a Comment for "Turning Off Closed Caption On Html5 Video By Default"
Post a Comment for "Turning Off Closed Caption On Html5 Video By Default"