Turning Off Closed Caption On Html5 Video By Default August 06, 2023 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 Stop Auto Play While Scroll DownHtml5 Video Color Difference Chrome & Internet ExplorerAutoplay Html5 Video With External Link On MobilesHow To Play Video In A New Tab? 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"